home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 83 / MacAddict_083_2003-07.iso / mac / Software / Development / VLC Source 0.5.3.dmg / configure < prev    next >
Text File  |  2003-04-08  |  1MB  |  35,229 lines

  1. #! /bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated by GNU Autoconf 2.57 for vlc 0.5.3.
  4. #
  5. # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
  6. # Free Software Foundation, Inc.
  7. # This configure script is free software; the Free Software Foundation
  8. # gives unlimited permission to copy, distribute and modify it.
  9. ## --------------------- ##
  10. ## M4sh Initialization.  ##
  11. ## --------------------- ##
  12.  
  13. # Be Bourne compatible
  14. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  15.   emulate sh
  16.   NULLCMD=:
  17.   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  18.   # is contrary to our usage.  Disable this feature.
  19.   alias -g '${1+"$@"}'='"$@"'
  20. elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
  21.   set -o posix
  22. fi
  23.  
  24. # Support unset when possible.
  25. if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
  26.   as_unset=unset
  27. else
  28.   as_unset=false
  29. fi
  30.  
  31.  
  32. # Work around bugs in pre-3.0 UWIN ksh.
  33. $as_unset ENV MAIL MAILPATH
  34. PS1='$ '
  35. PS2='> '
  36. PS4='+ '
  37.  
  38. # NLS nuisances.
  39. for as_var in \
  40.   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
  41.   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
  42.   LC_TELEPHONE LC_TIME
  43. do
  44.   if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
  45.     eval $as_var=C; export $as_var
  46.   else
  47.     $as_unset $as_var
  48.   fi
  49. done
  50.  
  51. # Required to use basename.
  52. if expr a : '\(a\)' >/dev/null 2>&1; then
  53.   as_expr=expr
  54. else
  55.   as_expr=false
  56. fi
  57.  
  58. if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
  59.   as_basename=basename
  60. else
  61.   as_basename=false
  62. fi
  63.  
  64.  
  65. # Name of the executable.
  66. as_me=`$as_basename "$0" ||
  67. $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  68.      X"$0" : 'X\(//\)$' \| \
  69.      X"$0" : 'X\(/\)$' \| \
  70.      .     : '\(.\)' 2>/dev/null ||
  71. echo X/"$0" |
  72.     sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
  73.         /^X\/\(\/\/\)$/{ s//\1/; q; }
  74.         /^X\/\(\/\).*/{ s//\1/; q; }
  75.         s/.*/./; q'`
  76.  
  77.  
  78. # PATH needs CR, and LINENO needs CR and PATH.
  79. # Avoid depending upon Character Ranges.
  80. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  81. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  82. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  83. as_cr_digits='0123456789'
  84. as_cr_alnum=$as_cr_Letters$as_cr_digits
  85.  
  86. # The user is always right.
  87. if test "${PATH_SEPARATOR+set}" != set; then
  88.   echo "#! /bin/sh" >conf$$.sh
  89.   echo  "exit 0"   >>conf$$.sh
  90.   chmod +x conf$$.sh
  91.   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
  92.     PATH_SEPARATOR=';'
  93.   else
  94.     PATH_SEPARATOR=:
  95.   fi
  96.   rm -f conf$$.sh
  97. fi
  98.  
  99.  
  100.   as_lineno_1=$LINENO
  101.   as_lineno_2=$LINENO
  102.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  103.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  104.   test "x$as_lineno_3"  = "x$as_lineno_2"  || {
  105.   # Find who we are.  Look in the path if we contain no path at all
  106.   # relative or not.
  107.   case $0 in
  108.     *[\\/]* ) as_myself=$0 ;;
  109.     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  110. for as_dir in $PATH
  111. do
  112.   IFS=$as_save_IFS
  113.   test -z "$as_dir" && as_dir=.
  114.   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  115. done
  116.  
  117.        ;;
  118.   esac
  119.   # We did not find ourselves, most probably we were run as `sh COMMAND'
  120.   # in which case we are not to be found in the path.
  121.   if test "x$as_myself" = x; then
  122.     as_myself=$0
  123.   fi
  124.   if test ! -f "$as_myself"; then
  125.     { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
  126.    { (exit 1); exit 1; }; }
  127.   fi
  128.   case $CONFIG_SHELL in
  129.   '')
  130.     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  131. for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  132. do
  133.   IFS=$as_save_IFS
  134.   test -z "$as_dir" && as_dir=.
  135.   for as_base in sh bash ksh sh5; do
  136.      case $as_dir in
  137.      /*)
  138.        if ("$as_dir/$as_base" -c '
  139.   as_lineno_1=$LINENO
  140.   as_lineno_2=$LINENO
  141.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  142.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  143.   test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
  144.          $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
  145.          $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
  146.          CONFIG_SHELL=$as_dir/$as_base
  147.          export CONFIG_SHELL
  148.          exec "$CONFIG_SHELL" "$0" ${1+"$@"}
  149.        fi;;
  150.      esac
  151.        done
  152. done
  153. ;;
  154.   esac
  155.  
  156.   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  157.   # uniformly replaced by the line number.  The first 'sed' inserts a
  158.   # line-number line before each line; the second 'sed' does the real
  159.   # work.  The second script uses 'N' to pair each line-number line
  160.   # with the numbered line, and appends trailing '-' during
  161.   # substitution so that $LINENO is not a special case at line end.
  162.   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  163.   # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
  164.   sed '=' <$as_myself |
  165.     sed '
  166.       N
  167.       s,$,-,
  168.       : loop
  169.       s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
  170.       t loop
  171.       s,-$,,
  172.       s,^['$as_cr_digits']*\n,,
  173.     ' >$as_me.lineno &&
  174.   chmod +x $as_me.lineno ||
  175.     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  176.    { (exit 1); exit 1; }; }
  177.  
  178.   # Don't try to exec as it changes $[0], causing all sort of problems
  179.   # (the dirname of $[0] is not the place where we might find the
  180.   # original and so on.  Autoconf is especially sensible to this).
  181.   . ./$as_me.lineno
  182.   # Exit status is that of the last command.
  183.   exit
  184. }
  185.  
  186.  
  187. case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
  188.   *c*,-n*) ECHO_N= ECHO_C='
  189. ' ECHO_T='    ' ;;
  190.   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
  191.   *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
  192. esac
  193.  
  194. if expr a : '\(a\)' >/dev/null 2>&1; then
  195.   as_expr=expr
  196. else
  197.   as_expr=false
  198. fi
  199.  
  200. rm -f conf$$ conf$$.exe conf$$.file
  201. echo >conf$$.file
  202. if ln -s conf$$.file conf$$ 2>/dev/null; then
  203.   # We could just check for DJGPP; but this test a) works b) is more generic
  204.   # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
  205.   if test -f conf$$.exe; then
  206.     # Don't use ln at all; we don't have any links
  207.     as_ln_s='cp -p'
  208.   else
  209.     as_ln_s='ln -s'
  210.   fi
  211. elif ln conf$$.file conf$$ 2>/dev/null; then
  212.   as_ln_s=ln
  213. else
  214.   as_ln_s='cp -p'
  215. fi
  216. rm -f conf$$ conf$$.exe conf$$.file
  217.  
  218. if mkdir -p . 2>/dev/null; then
  219.   as_mkdir_p=:
  220. else
  221.   as_mkdir_p=false
  222. fi
  223.  
  224. as_executable_p="test -f"
  225.  
  226. # Sed expression to map a string onto a valid CPP name.
  227. as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
  228.  
  229. # Sed expression to map a string onto a valid variable name.
  230. as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
  231.  
  232.  
  233. # IFS
  234. # We need space, tab and new line, in precisely that order.
  235. as_nl='
  236. '
  237. IFS="     $as_nl"
  238.  
  239. # CDPATH.
  240. $as_unset CDPATH
  241.  
  242.  
  243. # Name of the host.
  244. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
  245. # so uname gets run too.
  246. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  247.  
  248. exec 6>&1
  249.  
  250. #
  251. # Initializations.
  252. #
  253. ac_default_prefix=/usr/local
  254. ac_config_libobj_dir=.
  255. cross_compiling=no
  256. subdirs=
  257. MFLAGS=
  258. MAKEFLAGS=
  259. SHELL=${CONFIG_SHELL-/bin/sh}
  260.  
  261. # Maximum number of lines to put in a shell here document.
  262. # This variable seems obsolete.  It should probably be removed, and
  263. # only ac_max_sed_lines should be used.
  264. : ${ac_max_here_lines=38}
  265.  
  266. # Identity of this package.
  267. PACKAGE_NAME='vlc'
  268. PACKAGE_TARNAME='vlc'
  269. PACKAGE_VERSION='0.5.3'
  270. PACKAGE_STRING='vlc 0.5.3'
  271. PACKAGE_BUGREPORT=''
  272.  
  273. ac_unique_file="src/libvlc.c"
  274. # Factoring default headers for most tests.
  275. ac_includes_default="\
  276. #include <stdio.h>
  277. #if HAVE_SYS_TYPES_H
  278. # include <sys/types.h>
  279. #endif
  280. #if HAVE_SYS_STAT_H
  281. # include <sys/stat.h>
  282. #endif
  283. #if STDC_HEADERS
  284. # include <stdlib.h>
  285. # include <stddef.h>
  286. #else
  287. # if HAVE_STDLIB_H
  288. #  include <stdlib.h>
  289. # endif
  290. #endif
  291. #if HAVE_STRING_H
  292. # if !STDC_HEADERS && HAVE_MEMORY_H
  293. #  include <memory.h>
  294. # endif
  295. # include <string.h>
  296. #endif
  297. #if HAVE_STRINGS_H
  298. # include <strings.h>
  299. #endif
  300. #if HAVE_INTTYPES_H
  301. # include <inttypes.h>
  302. #else
  303. # if HAVE_STDINT_H
  304. #  include <stdint.h>
  305. # endif
  306. #endif
  307. #if HAVE_UNISTD_H
  308. # include <unistd.h>
  309. #endif"
  310.  
  311. ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE EGREP OBJC OBJCFLAGS OBJCDEPMODE am__fastdepOBJC_TRUE am__fastdepOBJC_FALSE RANLIB ac_ct_RANLIB AR ac_ct_AR LD ac_ct_LD WINDRES ac_ct_WINDRES HAVE_BEOS_TRUE HAVE_BEOS_FALSE HAVE_DARWIN_TRUE HAVE_DARWIN_FALSE HAVE_WIN32_TRUE HAVE_WIN32_FALSE MKINSTALLDIRS MSGFMT GMSGFMT XGETTEXT MSGMERGE ALLOCA GLIBC21 LIBICONV LTLIBICONV INTLBISON USE_NLS BUILD_INCLUDED_LIBINTL USE_INCLUDED_LIBINTL CATOBJEXT INTLOBJS DATADIRNAME INSTOBJEXT GENCAT INTL_LIBTOOL_SUFFIX_PREFIX INTLLIBS LIBINTL LTLIBINTL POSUB BUILD_INTL_TRUE BUILD_INTL_FALSE BUILD_GETOPT_TRUE BUILD_GETOPT_FALSE BUILD_DIRENT_TRUE BUILD_DIRENT_FALSE GPROF_TRUE GPROF_FALSE CPROF_TRUE CPROF_FALSE OPTIM_TRUE OPTIM_FALSE DEBUG_TRUE DEBUG_FALSE RELEASE_TRUE RELEASE_FALSE SDL12_CONFIG SDL11_CONFIG SDL_CONFIG FREETYPE_CONFIG ESD_CONFIG ARTS_CONFIG GTK12_CONFIG GTK_CONFIG PKG_CONFIG GTK2_CFLAGS GTK2_LIBS GNOME_CONFIG GNOME2_CFLAGS GNOME2_LIBS WX_CONFIG BPR2MAK ac_ct_BPR2MAK BCMAKE ac_ct_BCMAKE MOZILLA_CONFIG BUILD_MOZILLA_TRUE BUILD_MOZILLA_FALSE HAVE_PLUGINS_TRUE HAVE_PLUGINS_FALSE HAVE_BUILTINS_TRUE HAVE_BUILTINS_FALSE access_file_plugin_TRUE access_file_plugin_FALSE access_file_builtin_TRUE access_file_builtin_FALSE access_directory_plugin_TRUE access_directory_plugin_FALSE access_directory_builtin_TRUE access_directory_builtin_FALSE LDFLAGS_access_udp access_udp_plugin_TRUE access_udp_plugin_FALSE access_udp_builtin_TRUE access_udp_builtin_FALSE LDFLAGS_access_http access_http_plugin_TRUE access_http_plugin_FALSE access_http_builtin_TRUE access_http_builtin_FALSE LDFLAGS_access_ftp access_ftp_plugin_TRUE access_ftp_plugin_FALSE access_ftp_builtin_TRUE access_ftp_builtin_FALSE CPPFLAGS_slp LDFLAGS_slp slp_plugin_TRUE slp_plugin_FALSE slp_builtin_TRUE slp_builtin_FALSE CPPFLAGS_dvd LDFLAGS_dvd dvd_plugin_TRUE dvd_plugin_FALSE dvd_builtin_TRUE dvd_builtin_FALSE CPPFLAGS_dvdplay LDFLAGS_dvdplay dvdplay_plugin_TRUE dvdplay_plugin_FALSE dvdplay_builtin_TRUE dvdplay_builtin_FALSE CPPFLAGS_dvdread LDFLAGS_dvdread dvdread_plugin_TRUE dvdread_plugin_FALSE dvdread_builtin_TRUE dvdread_builtin_FALSE LDFLAGS_access_mms access_mms_plugin_TRUE access_mms_plugin_FALSE access_mms_builtin_TRUE access_mms_builtin_FALSE satellite_plugin_TRUE satellite_plugin_FALSE satellite_builtin_TRUE satellite_builtin_FALSE v4l_plugin_TRUE v4l_plugin_FALSE v4l_builtin_TRUE v4l_builtin_FALSE LDFLAGS_vcd vcd_plugin_TRUE vcd_plugin_FALSE vcd_builtin_TRUE vcd_builtin_FALSE access_output_dummy_plugin_TRUE access_output_dummy_plugin_FALSE access_output_dummy_builtin_TRUE access_output_dummy_builtin_FALSE access_output_file_plugin_TRUE access_output_file_plugin_FALSE access_output_file_builtin_TRUE access_output_file_builtin_FALSE LDFLAGS_access_output_udp access_output_udp_plugin_TRUE access_output_udp_plugin_FALSE access_output_udp_builtin_TRUE access_output_udp_builtin_FALSE access_output_http_plugin_TRUE access_output_http_plugin_FALSE access_output_http_builtin_TRUE access_output_http_builtin_FALSE trivial_channel_mixer_plugin_TRUE trivial_channel_mixer_plugin_FALSE trivial_channel_mixer_builtin_TRUE trivial_channel_mixer_builtin_FALSE LDFLAGS_headphone_channel_mixer headphone_channel_mixer_plugin_TRUE headphone_channel_mixer_plugin_FALSE headphone_channel_mixer_builtin_TRUE headphone_channel_mixer_builtin_FALSE float32tos16_plugin_TRUE float32tos16_plugin_FALSE float32tos16_builtin_TRUE float32tos16_builtin_FALSE float32tos8_plugin_TRUE float32tos8_plugin_FALSE float32tos8_builtin_TRUE float32tos8_builtin_FALSE float32tou16_plugin_TRUE float32tou16_plugin_FALSE float32tou16_builtin_TRUE float32tou16_builtin_FALSE float32tou8_plugin_TRUE float32tou8_plugin_FALSE float32tou8_builtin_TRUE float32tou8_builtin_FALSE a52tospdif_plugin_TRUE a52tospdif_plugin_FALSE a52tospdif_builtin_TRUE a52tospdif_builtin_FALSE CPPFLAGS_a52tofloat32 LDFLAGS_a52tofloat32 a52tofloat32_plugin_TRUE a52tofloat32_plugin_FALSE a52tofloat32_builtin_TRUE a52tofloat32_builtin_FALSE dtstospdif_plugin_TRUE dtstospdif_plugin_FALSE dtstospdif_builtin_TRUE dtstospdif_builtin_FALSE fixed32tos16_plugin_TRUE fixed32tos16_plugin_FALSE fixed32tos16_builtin_TRUE fixed32tos16_builtin_FALSE s16tofixed32_plugin_TRUE s16tofixed32_plugin_FALSE s16tofixed32_builtin_TRUE s16tofixed32_builtin_FALSE fixed32tofloat32_plugin_TRUE fixed32tofloat32_plugin_FALSE fixed32tofloat32_builtin_TRUE fixed32tofloat32_builtin_FALSE s16tofloat32_plugin_TRUE s16tofloat32_plugin_FALSE s16tofloat32_builtin_TRUE s16tofloat32_builtin_FALSE s16tofloat32swab_plugin_TRUE s16tofloat32swab_plugin_FALSE s16tofloat32swab_builtin_TRUE s16tofloat32swab_builtin_FALSE s8tofloat32_plugin_TRUE s8tofloat32_plugin_FALSE s8tofloat32_builtin_TRUE s8tofloat32_builtin_FALSE u8tofixed32_plugin_TRUE u8tofixed32_plugin_FALSE u8tofixed32_builtin_TRUE u8tofixed32_builtin_FALSE u8tofloat32_plugin_TRUE u8tofloat32_plugin_FALSE u8tofloat32_builtin_TRUE u8tofloat32_builtin_FALSE CPPFLAGS_mpgatofixed32 LDFLAGS_mpgatofixed32 mpgatofixed32_plugin_TRUE mpgatofixed32_plugin_FALSE mpgatofixed32_builtin_TRUE mpgatofixed32_builtin_FALSE trivial_resampler_plugin_TRUE trivial_resampler_plugin_FALSE trivial_resampler_builtin_TRUE trivial_resampler_builtin_FALSE ugly_resampler_plugin_TRUE ugly_resampler_plugin_FALSE ugly_resampler_builtin_TRUE ugly_resampler_builtin_FALSE linear_resampler_plugin_TRUE linear_resampler_plugin_FALSE linear_resampler_builtin_TRUE linear_resampler_builtin_FALSE bandlimited_resampler_plugin_TRUE bandlimited_resampler_plugin_FALSE bandlimited_resampler_builtin_TRUE bandlimited_resampler_builtin_FALSE LDFLAGS_coreaudio_resampler coreaudio_resampler_plugin_TRUE coreaudio_resampler_plugin_FALSE coreaudio_resampler_builtin_TRUE coreaudio_resampler_builtin_FALSE trivial_mixer_plugin_TRUE trivial_mixer_plugin_FALSE trivial_mixer_builtin_TRUE trivial_mixer_builtin_FALSE float32_mixer_plugin_TRUE float32_mixer_plugin_FALSE float32_mixer_builtin_TRUE float32_mixer_builtin_FALSE spdif_mixer_plugin_TRUE spdif_mixer_plugin_FALSE spdif_mixer_builtin_TRUE spdif_mixer_builtin_FALSE LDFLAGS_alsa alsa_plugin_TRUE alsa_plugin_FALSE alsa_builtin_TRUE alsa_builtin_FALSE CFLAGS_arts LDFLAGS_arts arts_plugin_TRUE arts_plugin_FALSE arts_builtin_TRUE arts_builtin_FALSE LDFLAGS_coreaudio coreaudio_plugin_TRUE coreaudio_plugin_FALSE coreaudio_builtin_TRUE coreaudio_builtin_FALSE CPPFLAGS_aout_directx aout_directx_plugin_TRUE aout_directx_plugin_FALSE aout_directx_builtin_TRUE aout_directx_builtin_FALSE CFLAGS_esd LDFLAGS_esd esd_plugin_TRUE esd_plugin_FALSE esd_builtin_TRUE esd_builtin_FALSE aout_file_plugin_TRUE aout_file_plugin_FALSE aout_file_builtin_TRUE aout_file_builtin_FALSE oss_plugin_TRUE oss_plugin_FALSE oss_builtin_TRUE oss_builtin_FALSE CFLAGS_aout_sdl LDFLAGS_aout_sdl aout_sdl_plugin_TRUE aout_sdl_plugin_FALSE aout_sdl_builtin_TRUE aout_sdl_builtin_FALSE LDFLAGS_waveout waveout_plugin_TRUE waveout_plugin_FALSE waveout_builtin_TRUE waveout_builtin_FALSE a52_plugin_TRUE a52_plugin_FALSE a52_builtin_TRUE a52_builtin_FALSE dts_plugin_TRUE dts_plugin_FALSE dts_builtin_TRUE dts_builtin_FALSE LDFLAGS_flacdec flacdec_plugin_TRUE flacdec_plugin_FALSE flacdec_builtin_TRUE flacdec_builtin_FALSE lpcm_plugin_TRUE lpcm_plugin_FALSE lpcm_builtin_TRUE lpcm_builtin_FALSE araw_plugin_TRUE araw_plugin_FALSE araw_builtin_TRUE araw_builtin_FALSE LDFLAGS_vorbis vorbis_plugin_TRUE vorbis_plugin_FALSE vorbis_builtin_TRUE vorbis_builtin_FALSE CPPFLAGS_tarkin LDFLAGS_tarkin tarkin_plugin_TRUE tarkin_plugin_FALSE tarkin_builtin_TRUE tarkin_builtin_FALSE LDFLAGS_theora theora_plugin_TRUE theora_plugin_FALSE theora_builtin_TRUE theora_builtin_FALSE LDFLAGS_tremor tremor_plugin_TRUE tremor_plugin_FALSE tremor_builtin_TRUE tremor_builtin_FALSE LDFLAGS_dv dv_plugin_TRUE dv_plugin_FALSE dv_builtin_TRUE dv_builtin_FALSE CPPFLAGS_xvid LDFLAGS_xvid xvid_plugin_TRUE xvid_plugin_FALSE xvid_builtin_TRUE xvid_builtin_FALSE adpcm_plugin_TRUE adpcm_plugin_FALSE adpcm_builtin_TRUE adpcm_builtin_FALSE mpeg_audio_plugin_TRUE mpeg_audio_plugin_FALSE mpeg_audio_builtin_TRUE mpeg_audio_builtin_FALSE LDFLAGS_libmpeg2 libmpeg2_plugin_TRUE libmpeg2_plugin_FALSE libmpeg2_builtin_TRUE libmpeg2_builtin_FALSE rawvideo_plugin_TRUE rawvideo_plugin_FALSE rawvideo_builtin_TRUE rawvideo_builtin_FALSE a52old_plugin_TRUE a52old_plugin_FALSE a52old_builtin_TRUE a52old_builtin_FALSE downmix_plugin_TRUE downmix_plugin_FALSE downmix_builtin_TRUE downmix_builtin_FALSE downmixsse_plugin_TRUE downmixsse_plugin_FALSE downmixsse_builtin_TRUE downmixsse_builtin_FALSE downmix3dn_plugin_TRUE downmix3dn_plugin_FALSE downmix3dn_builtin_TRUE downmix3dn_builtin_FALSE LDFLAGS_imdct imdct_plugin_TRUE imdct_plugin_FALSE imdct_builtin_TRUE imdct_builtin_FALSE LDFLAGS_imdctsse imdctsse_plugin_TRUE imdctsse_plugin_FALSE imdctsse_builtin_TRUE imdctsse_builtin_FALSE LDFLAGS_imdct3dn imdct3dn_plugin_TRUE imdct3dn_plugin_FALSE imdct3dn_builtin_TRUE imdct3dn_builtin_FALSE cinepak_plugin_TRUE cinepak_plugin_FALSE cinepak_builtin_TRUE cinepak_builtin_FALSE CPPFLAGS_faad LDFLAGS_faad faad_plugin_TRUE faad_plugin_FALSE faad_builtin_TRUE faad_builtin_FALSE CPPFLAGS_ffmpeg LDFLAGS_ffmpeg ffmpeg_plugin_TRUE ffmpeg_plugin_FALSE ffmpeg_builtin_TRUE ffmpeg_builtin_FALSE postprocessing_c_plugin_TRUE postprocessing_c_plugin_FALSE postprocessing_c_builtin_TRUE postprocessing_c_builtin_FALSE postprocessing_mmx_plugin_TRUE postprocessing_mmx_plugin_FALSE postprocessing_mmx_builtin_TRUE postprocessing_mmx_builtin_FALSE postprocessing_mmxext_plugin_TRUE postprocessing_mmxext_plugin_FALSE postprocessing_mmxext_builtin_TRUE postprocessing_mmxext_builtin_FALSE CFLAGS_mpeg_video mpeg_video_plugin_TRUE mpeg_video_plugin_FALSE mpeg_video_builtin_TRUE mpeg_video_builtin_FALSE idct_plugin_TRUE idct_plugin_FALSE idct_builtin_TRUE idct_builtin_FALSE idctclassic_plugin_TRUE idctclassic_plugin_FALSE idctclassic_builtin_TRUE idctclassic_builtin_FALSE idctmmx_plugin_TRUE idctmmx_plugin_FALSE idctmmx_builtin_TRUE idctmmx_builtin_FALSE idctmmxext_plugin_TRUE idctmmxext_plugin_FALSE idctmmxext_builtin_TRUE idctmmxext_builtin_FALSE CFLAGS_idctaltivec LDFLAGS_idctaltivec idctaltivec_plugin_TRUE idctaltivec_plugin_FALSE idctaltivec_builtin_TRUE idctaltivec_builtin_FALSE motion_plugin_TRUE motion_plugin_FALSE motion_builtin_TRUE motion_builtin_FALSE motionmmx_plugin_TRUE motionmmx_plugin_FALSE motionmmx_builtin_TRUE motionmmx_builtin_FALSE motionmmxext_plugin_TRUE motionmmxext_plugin_FALSE motionmmxext_builtin_TRUE motionmmxext_builtin_FALSE motion3dnow_plugin_TRUE motion3dnow_plugin_FALSE motion3dnow_builtin_TRUE motion3dnow_builtin_FALSE CFLAGS_motionaltivec LDFLAGS_motionaltivec motionaltivec_plugin_TRUE motionaltivec_plugin_FALSE motionaltivec_builtin_TRUE motionaltivec_builtin_FALSE spudec_plugin_TRUE spudec_plugin_FALSE spudec_builtin_TRUE spudec_builtin_FALSE LDFLAGS_lirc lirc_plugin_TRUE lirc_plugin_FALSE lirc_builtin_TRUE lirc_builtin_FALSE rc_plugin_TRUE rc_plugin_FALSE rc_builtin_TRUE rc_builtin_FALSE gestures_plugin_TRUE gestures_plugin_FALSE gestures_builtin_TRUE gestures_builtin_FALSE a52sys_plugin_TRUE a52sys_plugin_FALSE a52sys_builtin_TRUE a52sys_builtin_FALSE flac_plugin_TRUE flac_plugin_FALSE flac_builtin_TRUE flac_builtin_FALSE CPPFLAGS_ogg LDFLAGS_ogg ogg_plugin_TRUE ogg_plugin_FALSE ogg_builtin_TRUE ogg_builtin_FALSE m3u_plugin_TRUE m3u_plugin_FALSE m3u_builtin_TRUE m3u_builtin_FALSE demuxdump_plugin_TRUE demuxdump_plugin_FALSE demuxdump_builtin_TRUE demuxdump_builtin_FALSE rawdv_plugin_TRUE rawdv_plugin_FALSE rawdv_builtin_TRUE rawdv_builtin_FALSE au_plugin_TRUE au_plugin_FALSE au_builtin_TRUE au_builtin_FALSE aac_plugin_TRUE aac_plugin_FALSE aac_builtin_TRUE aac_builtin_FALSE avi_plugin_TRUE avi_plugin_FALSE avi_builtin_TRUE avi_builtin_FALSE asf_plugin_TRUE asf_plugin_FALSE asf_builtin_TRUE asf_builtin_FALSE LDFLAGS_mp4 mp4_plugin_TRUE mp4_plugin_FALSE mp4_builtin_TRUE mp4_builtin_FALSE mpeg_system_plugin_TRUE mpeg_system_plugin_FALSE mpeg_system_builtin_TRUE mpeg_system_builtin_FALSE es_plugin_TRUE es_plugin_FALSE es_builtin_TRUE es_builtin_FALSE m4v_plugin_TRUE m4v_plugin_FALSE m4v_builtin_TRUE m4v_builtin_FALSE ps_plugin_TRUE ps_plugin_FALSE ps_builtin_TRUE ps_builtin_FALSE ts_plugin_TRUE ts_plugin_FALSE ts_builtin_TRUE ts_builtin_FALSE CPPFLAGS_ts_dvbpsi LDFLAGS_ts_dvbpsi ts_dvbpsi_plugin_TRUE ts_dvbpsi_plugin_FALSE ts_dvbpsi_builtin_TRUE ts_dvbpsi_builtin_FALSE audio_plugin_TRUE audio_plugin_FALSE audio_builtin_TRUE audio_builtin_FALSE id3_plugin_TRUE id3_plugin_FALSE id3_builtin_TRUE id3_builtin_FALSE LDFLAGS_id3tag id3tag_plugin_TRUE id3tag_plugin_FALSE id3tag_builtin_TRUE id3tag_builtin_FALSE demuxsub_plugin_TRUE demuxsub_plugin_FALSE demuxsub_builtin_TRUE demuxsub_builtin_FALSE wav_plugin_TRUE wav_plugin_FALSE wav_builtin_TRUE wav_builtin_FALSE encoder_xvid_plugin_TRUE encoder_xvid_plugin_FALSE encoder_xvid_builtin_TRUE encoder_xvid_builtin_FALSE encoder_ffmpeg_plugin_TRUE encoder_ffmpeg_plugin_FALSE encoder_ffmpeg_builtin_TRUE encoder_ffmpeg_builtin_FALSE LDFLAGS_beos beos_plugin_TRUE beos_plugin_FALSE beos_builtin_TRUE beos_builtin_FALSE CFLAGS_familiar LDFLAGS_familiar familiar_plugin_TRUE familiar_plugin_FALSE familiar_builtin_TRUE familiar_builtin_FALSE CFLAGS_gtk LDFLAGS_gtk gtk_plugin_TRUE gtk_plugin_FALSE gtk_builtin_TRUE gtk_builtin_FALSE CFLAGS_gnome LDFLAGS_gnome gnome_plugin_TRUE gnome_plugin_FALSE gnome_builtin_TRUE gnome_builtin_FALSE CFLAGS_gtk2 LDFLAGS_gtk2 gtk2_plugin_TRUE gtk2_plugin_FALSE gtk2_builtin_TRUE gtk2_builtin_FALSE CFLAGS_gnome2 LDFLAGS_gnome2 gnome2_plugin_TRUE gnome2_plugin_FALSE gnome2_builtin_TRUE gnome2_builtin_FALSE CPPFLAGS_kde LDFLAGS_kde kde_plugin_TRUE kde_plugin_FALSE kde_builtin_TRUE kde_builtin_FALSE LDFLAGS_macosx macosx_plugin_TRUE macosx_plugin_FALSE macosx_builtin_TRUE macosx_builtin_FALSE LDFLAGS_ncurses ncurses_plugin_TRUE ncurses_plugin_FALSE ncurses_builtin_TRUE ncurses_builtin_FALSE LDFLAGS_qnx qnx_plugin_TRUE qnx_plugin_FALSE qnx_builtin_TRUE qnx_builtin_FALSE CPPFLAGS_qt LDFLAGS_qt qt_plugin_TRUE qt_plugin_FALSE qt_builtin_TRUE qt_builtin_FALSE CPPFLAGS_skins LDFLAGS_skins skins_plugin_TRUE skins_plugin_FALSE skins_builtin_TRUE skins_builtin_FALSE win32_plugin_TRUE win32_plugin_FALSE win32_builtin_TRUE win32_builtin_FALSE CXXFLAGS_wxwindows LDFLAGS_wxwindows wxwindows_plugin_TRUE wxwindows_plugin_FALSE wxwindows_builtin_TRUE wxwindows_builtin_FALSE CFLAGS_gtk_main LDFLAGS_gtk_main gtk_main_plugin_TRUE gtk_main_plugin_FALSE gtk_main_builtin_TRUE gtk_main_builtin_FALSE CFLAGS_gnome_main LDFLAGS_gnome_main gnome_main_plugin_TRUE gnome_main_plugin_FALSE gnome_main_builtin_TRUE gnome_main_builtin_FALSE CFLAGS_gtk2_main LDFLAGS_gtk2_main gtk2_main_plugin_TRUE gtk2_main_plugin_FALSE gtk2_main_builtin_TRUE gtk2_main_builtin_FALSE CFLAGS_gnome2_main LDFLAGS_gnome2_main gnome2_main_plugin_TRUE gnome2_main_plugin_FALSE gnome2_main_builtin_TRUE gnome2_main_builtin_FALSE LDFLAGS_sap sap_plugin_TRUE sap_plugin_FALSE sap_builtin_TRUE sap_builtin_FALSE screensaver_plugin_TRUE screensaver_plugin_FALSE screensaver_builtin_TRUE screensaver_builtin_FALSE CPPFLAGS_qte_main LDFLAGS_qte_main qte_main_plugin_TRUE qte_main_plugin_FALSE qte_main_builtin_TRUE qte_main_builtin_FALSE LDFLAGS_httpd httpd_plugin_TRUE httpd_plugin_FALSE httpd_builtin_TRUE httpd_builtin_FALSE dummy_plugin_TRUE dummy_plugin_FALSE dummy_builtin_TRUE dummy_builtin_FALSE logger_plugin_TRUE logger_plugin_FALSE logger_builtin_TRUE logger_builtin_FALSE memcpy_plugin_TRUE memcpy_plugin_FALSE memcpy_builtin_TRUE memcpy_builtin_FALSE memcpymmx_plugin_TRUE memcpymmx_plugin_FALSE memcpymmx_builtin_TRUE memcpymmx_builtin_FALSE memcpymmxext_plugin_TRUE memcpymmxext_plugin_FALSE memcpymmxext_builtin_TRUE memcpymmxext_builtin_FALSE memcpy3dn_plugin_TRUE memcpy3dn_plugin_FALSE memcpy3dn_builtin_TRUE memcpy3dn_builtin_FALSE CFLAGS_memcpyaltivec LDFLAGS_memcpyaltivec memcpyaltivec_plugin_TRUE memcpyaltivec_plugin_FALSE memcpyaltivec_builtin_TRUE memcpyaltivec_builtin_FALSE LDFLAGS_ipv4 ipv4_plugin_TRUE ipv4_plugin_FALSE ipv4_builtin_TRUE ipv4_builtin_FALSE LDFLAGS_ipv6 ipv6_plugin_TRUE ipv6_plugin_FALSE ipv6_builtin_TRUE ipv6_builtin_FALSE test1_plugin_TRUE test1_plugin_FALSE test1_builtin_TRUE test1_builtin_FALSE CXXFLAGS_test2 test2_plugin_TRUE test2_plugin_FALSE test2_builtin_TRUE test2_builtin_FALSE OBJCFLAGS_test3 LDFLAGS_test3 test3_plugin_TRUE test3_plugin_FALSE test3_builtin_TRUE test3_builtin_FALSE test4_plugin_TRUE test4_plugin_FALSE test4_builtin_TRUE test4_builtin_FALSE mux_dummy_plugin_TRUE mux_dummy_plugin_FALSE mux_dummy_builtin_TRUE mux_dummy_builtin_FALSE mux_avi_plugin_TRUE mux_avi_plugin_FALSE mux_avi_builtin_TRUE mux_avi_builtin_FALSE LDFLAGS_mux_ogg mux_ogg_plugin_TRUE mux_ogg_plugin_FALSE mux_ogg_builtin_TRUE mux_ogg_builtin_FALSE mux_ps_plugin_TRUE mux_ps_plugin_FALSE mux_ps_builtin_TRUE mux_ps_builtin_FALSE mux_ts_plugin_TRUE mux_ts_plugin_FALSE mux_ts_builtin_TRUE mux_ts_builtin_FALSE CPPFLAGS_mux_ts_dvbpsi LDFLAGS_mux_ts_dvbpsi mux_ts_dvbpsi_plugin_TRUE mux_ts_dvbpsi_plugin_FALSE mux_ts_dvbpsi_builtin_TRUE mux_ts_dvbpsi_builtin_FALSE packetizer_copy_plugin_TRUE packetizer_copy_plugin_FALSE packetizer_copy_builtin_TRUE packetizer_copy_builtin_FALSE packetizer_a52_plugin_TRUE packetizer_a52_plugin_FALSE packetizer_a52_builtin_TRUE packetizer_a52_builtin_FALSE packetizer_mpegaudio_plugin_TRUE packetizer_mpegaudio_plugin_FALSE packetizer_mpegaudio_builtin_TRUE packetizer_mpegaudio_builtin_FALSE packetizer_mpegvideo_plugin_TRUE packetizer_mpegvideo_plugin_FALSE packetizer_mpegvideo_builtin_TRUE packetizer_mpegvideo_builtin_FALSE packetizer_mpeg4video_plugin_TRUE packetizer_mpeg4video_plugin_FALSE packetizer_mpeg4video_builtin_TRUE packetizer_mpeg4video_builtin_FALSE packetizer_mpeg4audio_plugin_TRUE packetizer_mpeg4audio_plugin_FALSE packetizer_mpeg4audio_builtin_TRUE packetizer_mpeg4audio_builtin_FALSE LDFLAGS_i420_rgb i420_rgb_plugin_TRUE i420_rgb_plugin_FALSE i420_rgb_builtin_TRUE i420_rgb_builtin_FALSE i420_rgb_mmx_plugin_TRUE i420_rgb_mmx_plugin_FALSE i420_rgb_mmx_builtin_TRUE i420_rgb_mmx_builtin_FALSE i420_yuy2_plugin_TRUE i420_yuy2_plugin_FALSE i420_yuy2_builtin_TRUE i420_yuy2_builtin_FALSE CFLAGS_i420_yuy2_mmx i420_yuy2_mmx_plugin_TRUE i420_yuy2_mmx_plugin_FALSE i420_yuy2_mmx_builtin_TRUE i420_yuy2_mmx_builtin_FALSE i422_yuy2_plugin_TRUE i422_yuy2_plugin_FALSE i422_yuy2_builtin_TRUE i422_yuy2_builtin_FALSE i422_yuy2_mmx_plugin_TRUE i422_yuy2_mmx_plugin_FALSE i422_yuy2_mmx_builtin_TRUE i422_yuy2_mmx_builtin_FALSE i420_ymga_plugin_TRUE i420_ymga_plugin_FALSE i420_ymga_builtin_TRUE i420_ymga_builtin_FALSE i420_ymga_mmx_plugin_TRUE i420_ymga_mmx_plugin_FALSE i420_ymga_mmx_builtin_TRUE i420_ymga_mmx_builtin_FALSE transform_plugin_TRUE transform_plugin_FALSE transform_builtin_TRUE transform_builtin_FALSE invert_plugin_TRUE invert_plugin_FALSE invert_builtin_TRUE invert_builtin_FALSE LDFLAGS_adjust adjust_plugin_TRUE adjust_plugin_FALSE adjust_builtin_TRUE adjust_builtin_FALSE LDFLAGS_distort distort_plugin_TRUE distort_plugin_FALSE distort_builtin_TRUE distort_builtin_FALSE wall_plugin_TRUE wall_plugin_FALSE wall_builtin_TRUE wall_builtin_FALSE clone_plugin_TRUE clone_plugin_FALSE clone_builtin_TRUE clone_builtin_FALSE crop_plugin_TRUE crop_plugin_FALSE crop_builtin_TRUE crop_builtin_FALSE motionblur_plugin_TRUE motionblur_plugin_FALSE motionblur_builtin_TRUE motionblur_builtin_FALSE CFLAGS_osdtext LDFLAGS_osdtext osdtext_plugin_TRUE osdtext_plugin_FALSE osdtext_builtin_TRUE osdtext_builtin_FALSE deinterlace_plugin_TRUE deinterlace_plugin_FALSE deinterlace_builtin_TRUE deinterlace_builtin_FALSE LDFLAGS_aa aa_plugin_TRUE aa_plugin_FALSE aa_builtin_TRUE aa_builtin_FALSE fb_plugin_TRUE fb_plugin_FALSE fb_builtin_TRUE fb_builtin_FALSE CPPFLAGS_ggi LDFLAGS_ggi ggi_plugin_TRUE ggi_plugin_FALSE ggi_builtin_TRUE ggi_builtin_FALSE CPPFLAGS_glide LDFLAGS_glide glide_plugin_TRUE glide_plugin_FALSE glide_builtin_TRUE glide_builtin_FALSE CFLAGS_vout_sdl LDFLAGS_vout_sdl vout_sdl_plugin_TRUE vout_sdl_plugin_FALSE vout_sdl_builtin_TRUE vout_sdl_builtin_FALSE LDFLAGS_svgalib svgalib_plugin_TRUE svgalib_plugin_FALSE svgalib_builtin_TRUE svgalib_builtin_FALSE LDFLAGS_wingdi wingdi_plugin_TRUE wingdi_plugin_FALSE wingdi_builtin_TRUE wingdi_builtin_FALSE vout_encoder_plugin_TRUE vout_encoder_plugin_FALSE vout_encoder_builtin_TRUE vout_encoder_builtin_FALSE CPPFLAGS_vout_directx LDFLAGS_vout_directx vout_directx_plugin_TRUE vout_directx_plugin_FALSE vout_directx_builtin_TRUE vout_directx_builtin_FALSE mga_plugin_TRUE mga_plugin_FALSE mga_builtin_TRUE mga_builtin_FALSE xmga_plugin_TRUE xmga_plugin_FALSE xmga_builtin_TRUE xmga_builtin_FALSE CPPFLAGS_qte LDFLAGS_qte qte_plugin_TRUE qte_plugin_FALSE qte_builtin_TRUE qte_builtin_FALSE CPPFLAGS_x11 LDFLAGS_x11 x11_plugin_TRUE x11_plugin_FALSE x11_builtin_TRUE x11_builtin_FALSE CPPFLAGS_xvideo LDFLAGS_xvideo xvideo_plugin_TRUE xvideo_plugin_FALSE xvideo_builtin_TRUE xvideo_builtin_FALSE scope_plugin_TRUE scope_plugin_FALSE scope_builtin_TRUE scope_builtin_FALSE LDFLAGS_xosd xosd_plugin_TRUE xosd_plugin_FALSE xosd_builtin_TRUE xosd_builtin_FALSE UNTRUE_TRUE UNTRUE_FALSE DATA_PATH PLUGIN_PATH AUTOMAKE_SUCKS SYS ARCH PLUGINS BUILTINS ALIASES ASM MOC XPIDL LIBEXT INCLUDES ALL_LINGUAS CFLAGS_TUNING CFLAGS_OPTIM CFLAGS_OPTIM_NODEBUG CFLAGS_NOOPTIM CFLAGS_vlc CFLAGS_pics CXXFLAGS_pics CFLAGS_plugins CXXFLAGS_plugins CFLAGS_builtins CPPFLAGS_mozilla LDFLAGS_vlc LDFLAGS_libvlc LDFLAGS_plugins LDFLAGS_builtins LDFLAGS_mozilla LIBOBJS LTLIBOBJS'
  312. ac_subst_files=''
  313.  
  314. # Initialize some variables set by options.
  315. ac_init_help=
  316. ac_init_version=false
  317. # The variables have the same names as the options, with
  318. # dashes changed to underlines.
  319. cache_file=/dev/null
  320. exec_prefix=NONE
  321. no_create=
  322. no_recursion=
  323. prefix=NONE
  324. program_prefix=NONE
  325. program_suffix=NONE
  326. program_transform_name=s,x,x,
  327. silent=
  328. site=
  329. srcdir=
  330. verbose=
  331. x_includes=NONE
  332. x_libraries=NONE
  333.  
  334. # Installation directory options.
  335. # These are left unexpanded so users can "make install exec_prefix=/foo"
  336. # and all the variables that are supposed to be based on exec_prefix
  337. # by default will actually change.
  338. # Use braces instead of parens because sh, perl, etc. also accept them.
  339. bindir='${exec_prefix}/bin'
  340. sbindir='${exec_prefix}/sbin'
  341. libexecdir='${exec_prefix}/libexec'
  342. datadir='${prefix}/share'
  343. sysconfdir='${prefix}/etc'
  344. sharedstatedir='${prefix}/com'
  345. localstatedir='${prefix}/var'
  346. libdir='${exec_prefix}/lib'
  347. includedir='${prefix}/include'
  348. oldincludedir='/usr/include'
  349. infodir='${prefix}/info'
  350. mandir='${prefix}/man'
  351.  
  352. ac_prev=
  353. for ac_option
  354. do
  355.   # If the previous option needs an argument, assign it.
  356.   if test -n "$ac_prev"; then
  357.     eval "$ac_prev=\$ac_option"
  358.     ac_prev=
  359.     continue
  360.   fi
  361.  
  362.   ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
  363.  
  364.   # Accept the important Cygnus configure options, so we can diagnose typos.
  365.  
  366.   case $ac_option in
  367.  
  368.   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  369.     ac_prev=bindir ;;
  370.   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  371.     bindir=$ac_optarg ;;
  372.  
  373.   -build | --build | --buil | --bui | --bu)
  374.     ac_prev=build_alias ;;
  375.   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  376.     build_alias=$ac_optarg ;;
  377.  
  378.   -cache-file | --cache-file | --cache-fil | --cache-fi \
  379.   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  380.     ac_prev=cache_file ;;
  381.   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  382.   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  383.     cache_file=$ac_optarg ;;
  384.  
  385.   --config-cache | -C)
  386.     cache_file=config.cache ;;
  387.  
  388.   -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  389.     ac_prev=datadir ;;
  390.   -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
  391.   | --da=*)
  392.     datadir=$ac_optarg ;;
  393.  
  394.   -disable-* | --disable-*)
  395.     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  396.     # Reject names that are not valid shell variable names.
  397.     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  398.       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
  399.    { (exit 1); exit 1; }; }
  400.     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
  401.     eval "enable_$ac_feature=no" ;;
  402.  
  403.   -enable-* | --enable-*)
  404.     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  405.     # Reject names that are not valid shell variable names.
  406.     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  407.       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
  408.    { (exit 1); exit 1; }; }
  409.     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
  410.     case $ac_option in
  411.       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
  412.       *) ac_optarg=yes ;;
  413.     esac
  414.     eval "enable_$ac_feature='$ac_optarg'" ;;
  415.  
  416.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  417.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  418.   | --exec | --exe | --ex)
  419.     ac_prev=exec_prefix ;;
  420.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  421.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  422.   | --exec=* | --exe=* | --ex=*)
  423.     exec_prefix=$ac_optarg ;;
  424.  
  425.   -gas | --gas | --ga | --g)
  426.     # Obsolete; use --with-gas.
  427.     with_gas=yes ;;
  428.  
  429.   -help | --help | --hel | --he | -h)
  430.     ac_init_help=long ;;
  431.   -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
  432.     ac_init_help=recursive ;;
  433.   -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
  434.     ac_init_help=short ;;
  435.  
  436.   -host | --host | --hos | --ho)
  437.     ac_prev=host_alias ;;
  438.   -host=* | --host=* | --hos=* | --ho=*)
  439.     host_alias=$ac_optarg ;;
  440.  
  441.   -includedir | --includedir | --includedi | --included | --include \
  442.   | --includ | --inclu | --incl | --inc)
  443.     ac_prev=includedir ;;
  444.   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  445.   | --includ=* | --inclu=* | --incl=* | --inc=*)
  446.     includedir=$ac_optarg ;;
  447.  
  448.   -infodir | --infodir | --infodi | --infod | --info | --inf)
  449.     ac_prev=infodir ;;
  450.   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  451.     infodir=$ac_optarg ;;
  452.  
  453.   -libdir | --libdir | --libdi | --libd)
  454.     ac_prev=libdir ;;
  455.   -libdir=* | --libdir=* | --libdi=* | --libd=*)
  456.     libdir=$ac_optarg ;;
  457.  
  458.   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  459.   | --libexe | --libex | --libe)
  460.     ac_prev=libexecdir ;;
  461.   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  462.   | --libexe=* | --libex=* | --libe=*)
  463.     libexecdir=$ac_optarg ;;
  464.  
  465.   -localstatedir | --localstatedir | --localstatedi | --localstated \
  466.   | --localstate | --localstat | --localsta | --localst \
  467.   | --locals | --local | --loca | --loc | --lo)
  468.     ac_prev=localstatedir ;;
  469.   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  470.   | --localstate=* | --localstat=* | --localsta=* | --localst=* \
  471.   | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  472.     localstatedir=$ac_optarg ;;
  473.  
  474.   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  475.     ac_prev=mandir ;;
  476.   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  477.     mandir=$ac_optarg ;;
  478.  
  479.   -nfp | --nfp | --nf)
  480.     # Obsolete; use --without-fp.
  481.     with_fp=no ;;
  482.  
  483.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  484.   | --no-cr | --no-c | -n)
  485.     no_create=yes ;;
  486.  
  487.   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  488.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  489.     no_recursion=yes ;;
  490.  
  491.   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  492.   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  493.   | --oldin | --oldi | --old | --ol | --o)
  494.     ac_prev=oldincludedir ;;
  495.   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  496.   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  497.   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  498.     oldincludedir=$ac_optarg ;;
  499.  
  500.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  501.     ac_prev=prefix ;;
  502.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  503.     prefix=$ac_optarg ;;
  504.  
  505.   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  506.   | --program-pre | --program-pr | --program-p)
  507.     ac_prev=program_prefix ;;
  508.   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  509.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  510.     program_prefix=$ac_optarg ;;
  511.  
  512.   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  513.   | --program-suf | --program-su | --program-s)
  514.     ac_prev=program_suffix ;;
  515.   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  516.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  517.     program_suffix=$ac_optarg ;;
  518.  
  519.   -program-transform-name | --program-transform-name \
  520.   | --program-transform-nam | --program-transform-na \
  521.   | --program-transform-n | --program-transform- \
  522.   | --program-transform | --program-transfor \
  523.   | --program-transfo | --program-transf \
  524.   | --program-trans | --program-tran \
  525.   | --progr-tra | --program-tr | --program-t)
  526.     ac_prev=program_transform_name ;;
  527.   -program-transform-name=* | --program-transform-name=* \
  528.   | --program-transform-nam=* | --program-transform-na=* \
  529.   | --program-transform-n=* | --program-transform-=* \
  530.   | --program-transform=* | --program-transfor=* \
  531.   | --program-transfo=* | --program-transf=* \
  532.   | --program-trans=* | --program-tran=* \
  533.   | --progr-tra=* | --program-tr=* | --program-t=*)
  534.     program_transform_name=$ac_optarg ;;
  535.  
  536.   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  537.   | -silent | --silent | --silen | --sile | --sil)
  538.     silent=yes ;;
  539.  
  540.   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  541.     ac_prev=sbindir ;;
  542.   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  543.   | --sbi=* | --sb=*)
  544.     sbindir=$ac_optarg ;;
  545.  
  546.   -sharedstatedir | --sharedstatedir | --sharedstatedi \
  547.   | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  548.   | --sharedst | --shareds | --shared | --share | --shar \
  549.   | --sha | --sh)
  550.     ac_prev=sharedstatedir ;;
  551.   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  552.   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  553.   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  554.   | --sha=* | --sh=*)
  555.     sharedstatedir=$ac_optarg ;;
  556.  
  557.   -site | --site | --sit)
  558.     ac_prev=site ;;
  559.   -site=* | --site=* | --sit=*)
  560.     site=$ac_optarg ;;
  561.  
  562.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  563.     ac_prev=srcdir ;;
  564.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  565.     srcdir=$ac_optarg ;;
  566.  
  567.   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  568.   | --syscon | --sysco | --sysc | --sys | --sy)
  569.     ac_prev=sysconfdir ;;
  570.   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  571.   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  572.     sysconfdir=$ac_optarg ;;
  573.  
  574.   -target | --target | --targe | --targ | --tar | --ta | --t)
  575.     ac_prev=target_alias ;;
  576.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  577.     target_alias=$ac_optarg ;;
  578.  
  579.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  580.     verbose=yes ;;
  581.  
  582.   -version | --version | --versio | --versi | --vers | -V)
  583.     ac_init_version=: ;;
  584.  
  585.   -with-* | --with-*)
  586.     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  587.     # Reject names that are not valid shell variable names.
  588.     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  589.       { echo "$as_me: error: invalid package name: $ac_package" >&2
  590.    { (exit 1); exit 1; }; }
  591.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  592.     case $ac_option in
  593.       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
  594.       *) ac_optarg=yes ;;
  595.     esac
  596.     eval "with_$ac_package='$ac_optarg'" ;;
  597.  
  598.   -without-* | --without-*)
  599.     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  600.     # Reject names that are not valid shell variable names.
  601.     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  602.       { echo "$as_me: error: invalid package name: $ac_package" >&2
  603.    { (exit 1); exit 1; }; }
  604.     ac_package=`echo $ac_package | sed 's/-/_/g'`
  605.     eval "with_$ac_package=no" ;;
  606.  
  607.   --x)
  608.     # Obsolete; use --with-x.
  609.     with_x=yes ;;
  610.  
  611.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  612.   | --x-incl | --x-inc | --x-in | --x-i)
  613.     ac_prev=x_includes ;;
  614.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  615.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  616.     x_includes=$ac_optarg ;;
  617.  
  618.   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  619.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  620.     ac_prev=x_libraries ;;
  621.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  622.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  623.     x_libraries=$ac_optarg ;;
  624.  
  625.   -*) { echo "$as_me: error: unrecognized option: $ac_option
  626. Try \`$0 --help' for more information." >&2
  627.    { (exit 1); exit 1; }; }
  628.     ;;
  629.  
  630.   *=*)
  631.     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
  632.     # Reject names that are not valid shell variable names.
  633.     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
  634.       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
  635.    { (exit 1); exit 1; }; }
  636.     ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
  637.     eval "$ac_envvar='$ac_optarg'"
  638.     export $ac_envvar ;;
  639.  
  640.   *)
  641.     # FIXME: should be removed in autoconf 3.0.
  642.     echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  643.     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  644.       echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  645.     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
  646.     ;;
  647.  
  648.   esac
  649. done
  650.  
  651. if test -n "$ac_prev"; then
  652.   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  653.   { echo "$as_me: error: missing argument to $ac_option" >&2
  654.    { (exit 1); exit 1; }; }
  655. fi
  656.  
  657. # Be sure to have absolute paths.
  658. for ac_var in exec_prefix prefix
  659. do
  660.   eval ac_val=$`echo $ac_var`
  661.   case $ac_val in
  662.     [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
  663.     *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
  664.    { (exit 1); exit 1; }; };;
  665.   esac
  666. done
  667.  
  668. # Be sure to have absolute paths.
  669. for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
  670.               localstatedir libdir includedir oldincludedir infodir mandir
  671. do
  672.   eval ac_val=$`echo $ac_var`
  673.   case $ac_val in
  674.     [\\/$]* | ?:[\\/]* ) ;;
  675.     *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
  676.    { (exit 1); exit 1; }; };;
  677.   esac
  678. done
  679.  
  680. # There might be people who depend on the old broken behavior: `$host'
  681. # used to hold the argument of --host etc.
  682. # FIXME: To remove some day.
  683. build=$build_alias
  684. host=$host_alias
  685. target=$target_alias
  686.  
  687. # FIXME: To remove some day.
  688. if test "x$host_alias" != x; then
  689.   if test "x$build_alias" = x; then
  690.     cross_compiling=maybe
  691.     echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
  692.     If a cross compiler is detected then cross compile mode will be used." >&2
  693.   elif test "x$build_alias" != "x$host_alias"; then
  694.     cross_compiling=yes
  695.   fi
  696. fi
  697.  
  698. ac_tool_prefix=
  699. test -n "$host_alias" && ac_tool_prefix=$host_alias-
  700.  
  701. test "$silent" = yes && exec 6>/dev/null
  702.  
  703.  
  704. # Find the source files, if location was not specified.
  705. if test -z "$srcdir"; then
  706.   ac_srcdir_defaulted=yes
  707.   # Try the directory containing this script, then its parent.
  708.   ac_confdir=`(dirname "$0") 2>/dev/null ||
  709. $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  710.          X"$0" : 'X\(//\)[^/]' \| \
  711.          X"$0" : 'X\(//\)$' \| \
  712.          X"$0" : 'X\(/\)' \| \
  713.          .     : '\(.\)' 2>/dev/null ||
  714. echo X"$0" |
  715.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  716.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  717.         /^X\(\/\/\)$/{ s//\1/; q; }
  718.         /^X\(\/\).*/{ s//\1/; q; }
  719.         s/.*/./; q'`
  720.   srcdir=$ac_confdir
  721.   if test ! -r $srcdir/$ac_unique_file; then
  722.     srcdir=..
  723.   fi
  724. else
  725.   ac_srcdir_defaulted=no
  726. fi
  727. if test ! -r $srcdir/$ac_unique_file; then
  728.   if test "$ac_srcdir_defaulted" = yes; then
  729.     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
  730.    { (exit 1); exit 1; }; }
  731.   else
  732.     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
  733.    { (exit 1); exit 1; }; }
  734.   fi
  735. fi
  736. (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
  737.   { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
  738.    { (exit 1); exit 1; }; }
  739. srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
  740. ac_env_build_alias_set=${build_alias+set}
  741. ac_env_build_alias_value=$build_alias
  742. ac_cv_env_build_alias_set=${build_alias+set}
  743. ac_cv_env_build_alias_value=$build_alias
  744. ac_env_host_alias_set=${host_alias+set}
  745. ac_env_host_alias_value=$host_alias
  746. ac_cv_env_host_alias_set=${host_alias+set}
  747. ac_cv_env_host_alias_value=$host_alias
  748. ac_env_target_alias_set=${target_alias+set}
  749. ac_env_target_alias_value=$target_alias
  750. ac_cv_env_target_alias_set=${target_alias+set}
  751. ac_cv_env_target_alias_value=$target_alias
  752. ac_env_CC_set=${CC+set}
  753. ac_env_CC_value=$CC
  754. ac_cv_env_CC_set=${CC+set}
  755. ac_cv_env_CC_value=$CC
  756. ac_env_CFLAGS_set=${CFLAGS+set}
  757. ac_env_CFLAGS_value=$CFLAGS
  758. ac_cv_env_CFLAGS_set=${CFLAGS+set}
  759. ac_cv_env_CFLAGS_value=$CFLAGS
  760. ac_env_LDFLAGS_set=${LDFLAGS+set}
  761. ac_env_LDFLAGS_value=$LDFLAGS
  762. ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
  763. ac_cv_env_LDFLAGS_value=$LDFLAGS
  764. ac_env_CPPFLAGS_set=${CPPFLAGS+set}
  765. ac_env_CPPFLAGS_value=$CPPFLAGS
  766. ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
  767. ac_cv_env_CPPFLAGS_value=$CPPFLAGS
  768. ac_env_CPP_set=${CPP+set}
  769. ac_env_CPP_value=$CPP
  770. ac_cv_env_CPP_set=${CPP+set}
  771. ac_cv_env_CPP_value=$CPP
  772. ac_env_CXX_set=${CXX+set}
  773. ac_env_CXX_value=$CXX
  774. ac_cv_env_CXX_set=${CXX+set}
  775. ac_cv_env_CXX_value=$CXX
  776. ac_env_CXXFLAGS_set=${CXXFLAGS+set}
  777. ac_env_CXXFLAGS_value=$CXXFLAGS
  778. ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set}
  779. ac_cv_env_CXXFLAGS_value=$CXXFLAGS
  780.  
  781. #
  782. # Report the --help message.
  783. #
  784. if test "$ac_init_help" = "long"; then
  785.   # Omit some internal or obsolete options to make the list less imposing.
  786.   # This message is too long to be a string in the A/UX 3.1 sh.
  787.   cat <<_ACEOF
  788. \`configure' configures vlc 0.5.3 to adapt to many kinds of systems.
  789.  
  790. Usage: $0 [OPTION]... [VAR=VALUE]...
  791.  
  792. To assign environment variables (e.g., CC, CFLAGS...), specify them as
  793. VAR=VALUE.  See below for descriptions of some of the useful variables.
  794.  
  795. Defaults for the options are specified in brackets.
  796.  
  797. Configuration:
  798.   -h, --help              display this help and exit
  799.       --help=short        display options specific to this package
  800.       --help=recursive    display the short help of all the included packages
  801.   -V, --version           display version information and exit
  802.   -q, --quiet, --silent   do not print \`checking...' messages
  803.       --cache-file=FILE   cache test results in FILE [disabled]
  804.   -C, --config-cache      alias for \`--cache-file=config.cache'
  805.   -n, --no-create         do not create output files
  806.       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
  807.  
  808. _ACEOF
  809.  
  810.   cat <<_ACEOF
  811. Installation directories:
  812.   --prefix=PREFIX         install architecture-independent files in PREFIX
  813.                           [$ac_default_prefix]
  814.   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  815.                           [PREFIX]
  816.  
  817. By default, \`make install' will install all the files in
  818. \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
  819. an installation prefix other than \`$ac_default_prefix' using \`--prefix',
  820. for instance \`--prefix=\$HOME'.
  821.  
  822. For better control, use the options below.
  823.  
  824. Fine tuning of the installation directories:
  825.   --bindir=DIR           user executables [EPREFIX/bin]
  826.   --sbindir=DIR          system admin executables [EPREFIX/sbin]
  827.   --libexecdir=DIR       program executables [EPREFIX/libexec]
  828.   --datadir=DIR          read-only architecture-independent data [PREFIX/share]
  829.   --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
  830.   --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
  831.   --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
  832.   --libdir=DIR           object code libraries [EPREFIX/lib]
  833.   --includedir=DIR       C header files [PREFIX/include]
  834.   --oldincludedir=DIR    C header files for non-gcc [/usr/include]
  835.   --infodir=DIR          info documentation [PREFIX/info]
  836.   --mandir=DIR           man documentation [PREFIX/man]
  837. _ACEOF
  838.  
  839.   cat <<\_ACEOF
  840.  
  841. Program names:
  842.   --program-prefix=PREFIX            prepend PREFIX to installed program names
  843.   --program-suffix=SUFFIX            append SUFFIX to installed program names
  844.   --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
  845.  
  846. System types:
  847.   --build=BUILD     configure for building on BUILD [guessed]
  848.   --host=HOST       cross-compile to build programs to run on HOST [BUILD]
  849.   --target=TARGET   configure for building compilers for TARGET [HOST]
  850. _ACEOF
  851. fi
  852.  
  853. if test -n "$ac_init_help"; then
  854.   case $ac_init_help in
  855.      short | recursive ) echo "Configuration of vlc 0.5.3:";;
  856.    esac
  857.   cat <<\_ACEOF
  858.  
  859. Optional Features:
  860.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  861.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  862.   --disable-dependency-tracking Speeds up one-time builds
  863.   --enable-dependency-tracking  Do not reject slow dependency extractors
  864.   --disable-rpath         do not hardcode runtime library paths
  865.   --disable-nls           do not use Native Language Support
  866.   --enable-pth            GNU Pth support (default disabled)
  867.   --enable-st             State Threads (default disabled)
  868.   --enable-gprof          gprof profiling (default disabled)
  869.   --enable-cprof          cprof profiling (default disabled)
  870.   --disable-optimizations disable compiler optimizations (default enabled)
  871.   --disable-altivec       disable AltiVec optimizations (default enabled on PPC)
  872.   --enable-debug          debug mode (default disabled)
  873.   --enable-release        activate extra optimizations (default disabled)
  874.   --enable-sout           Stream output modules (default enabled)
  875.   --enable-dvd            DVD input module (default enabled)
  876.   --enable-dvdread        dvdread input module (default disabled)
  877.   --enable-dvdplay        dvdplay input module (default disabled)
  878.   --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)
  879.   --enable-v4l            Video4Linux input support (default disabled)
  880.   --enable-vcd            VCD support for Linux, FreeBSD, MacOS X and Win32 (default enabled)
  881.   --enable-satellite      satellite card support (default disabled)
  882.   --enable-ogg            Ogg demux support (default enabled)
  883.   --enable-mad            libmad module (default disabled)
  884.   --enable-ffmpeg         ffmpeg codec (default disabled)
  885.   --enable-faad           faad codec (default disabled)
  886.   --enable-xvid           xvid codec (default disabled)
  887.   --enable-a52            A/52 support with liba52 (default enabled)
  888.   --enable-dv             DV decoder support (default disabled)
  889.   --enable-flac           flac decoder support (default disabled)
  890.   --enable-libmpeg2       libmpeg2 decoder support (default disabled)
  891.   --enable-vorbis         Vorbis decoder support (default enabled)
  892.   --enable-tremor         Tremor decoder support (default disabled)
  893.   --enable-tarkin         experimental tarkin codec (default disabled)
  894.   --enable-theora         experimental theora codec (default disabled)
  895.   --enable-x11            X11 support (default enabled)
  896.   --enable-xvideo         XVideo support (default enabled)
  897.   --enable-sdl            SDL support (default enabled)
  898.   --enable-freetype       freetype support (default enabled)
  899.   --enable-qte            QT Embedded support (default disabled)
  900.   --enable-directx        Win32 DirectX support (default enabled on Win32)
  901.   --enable-fb             Linux framebuffer support (default enabled on Linux)
  902.   --enable-mga            Linux kernel Matrox support (default disabled)
  903.   --enable-svgalib        SVGAlib support (default disabled)
  904.   --enable-ggi            GGI support (default disabled)
  905.   --enable-glide          Glide (3dfx) support (default disabled)
  906.   --enable-aa             aalib output (default disabled)
  907.   --enable-wingdi         Win32 GDI module (default enabled on Win32)
  908.   --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)
  909.   --enable-esd            Esound library support (default disabled)
  910.   --enable-arts           aRts sound server (default disabled)
  911.   --enable-alsa           ALSA sound support for Linux (default disabled)
  912.   --enable-waveout        Win32 waveOut module (default enabled on Win32)
  913.   --enable-coreaudio      CoreAudio module (default enabled on MacOS X)
  914.   --enable-skins          Win32 skins module (default enabled on Win32)
  915.   --enable-gtk            Gtk+ support (default enabled)
  916.   --enable-gtk2           Gtk2 support (default disabled)
  917.   --enable-familiar       Familiar Gtk+ support (default disabled)
  918.   --enable-gnome          Gnome interface support (default disabled)
  919.   --enable-gnome2         Gnome2 support (default disabled)
  920.   --enable-wxwindows      wxWindows support (default enabled)
  921.   --enable-qt             Qt interface support (default disabled)
  922.   --enable-kde            KDE interface support (default disabled)
  923.   --enable-opie           Qt embedded interface support (default disabled)
  924.   --enable-macosx         MacOS X support (default enabled on MacOS X)
  925.   --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)
  926.   --enable-intfwin        Win32 interface support (default disabled)
  927.   --enable-ncurses        ncurses interface support (default disabled)
  928.   --enable-xosd           xosd interface support (default disabled)
  929.   --enable-slp            SLP service discovery support (default enabled)
  930.   --enable-lirc           lirc support (default disabled)
  931.   --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)
  932.   --enable-testsuite      build test modules (default disabled)
  933.   --disable-plugins       make all plugins built-in (default plugins enabled)
  934.  
  935. Optional Packages:
  936.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  937.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  938.   --with-gnu-ld           assume the C compiler uses GNU ld default=no
  939.   --with-libiconv-prefix=DIR  search for libiconv in DIR/include and DIR/lib
  940.   --without-libiconv-prefix     don't search for libiconv in includedir and libdir
  941.   --with-included-gettext use the GNU gettext library included here
  942.   --with-libintl-prefix=DIR  search for libintl in DIR/include and DIR/lib
  943.   --without-libintl-prefix     don't search for libintl in includedir and libdir
  944.  
  945. Optimization options:
  946.   --with-tuning=ARCH      enable special tuning for an architecture
  947.                           (default i686 on IA-32 and 750 on PPC)
  948. Input plugins:
  949.     --with-dvdcss=PATH    libdvdcss headers and libraries
  950.     --with-dvdcss-tree=PATH libdvdcss tree for static linking
  951.     --with-dvdread=PATH    libdvdread headers and libraries
  952.     --with-dvdread-tree=PATH libdvdread tree for static linking
  953.     --with-dvdplay=PATH    libdvdplay headers and libraries
  954.     --with-dvdplay-tree=PATH libdvdplay tree for static linking
  955.     --with-dvbpsi=PATH    libdvbpsi headers and libraries
  956.     --with-dvbpsi-tree=PATH libdvbpsi tree for static linking
  957. Codec plugins:
  958.     --with-mad=PATH       path to libmad
  959.     --with-mad-tree=PATH  mad tree for static linking
  960.     --with-ffmpeg=PATH    path to ffmpeg installation
  961.     --with-ffmpeg-tree=PATH ffmpeg tree for static linking
  962.     --with-faad=PATH      path to faad installation
  963.     --with-faad-tree=PATH faad tree for static linking
  964.     --with-xvid=PATH      path to xvid installation
  965.     --with-xvid-tree=PATH xvid tree for static linking
  966.     --with-a52=PATH       a52 headers and libraries
  967.     --with-a52-tree=PATH  a52dec tree for static linking
  968.     --with-tarkin-tree=PATH tarkin tree for static linking
  969. Video plugins:
  970.     --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)
  971.     --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
  972.                                e.g use as:
  973.                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)
  974.     --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)
  975.     --with-qte=PATH       Qt Embedded headers and libraries
  976.     --with-directx=PATH   Win32 DirectX headers
  977.     --with-ggi=PATH       path to libggi
  978.     --with-glide=PATH     path to libglide
  979. Audio plugins:
  980. Interface plugins:
  981.     --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)
  982.     --with-gtk-prefix=PATH path to libgtk (needed for cross-compiling),
  983.                           e.g use as:
  984.                           --with-gtk-prefix=/usr/local/arm/2.95.3/arm-linux/usr)
  985.     --with-gpe-prefix=PATH gpe installation path prefix (default search in \$PATH)
  986.     --with-wx-config-path=PATH wx-config path (default search in \$PATH)
  987.     --with-slp=PATH       libslp headers and libraries
  988. Misc options:
  989.   --with-words=endianness set endianness (big or little)
  990.  
  991. Some influential environment variables:
  992.   CC          C compiler command
  993.   CFLAGS      C compiler flags
  994.   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
  995.               nonstandard directory <lib dir>
  996.   CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
  997.               headers in a nonstandard directory <include dir>
  998.   CPP         C preprocessor
  999.   CXX         C++ compiler command
  1000.   CXXFLAGS    C++ compiler flags
  1001.  
  1002. Use these variables to override the choices made by `configure' or to help
  1003. it to find libraries and programs with nonstandard names/locations.
  1004.  
  1005. _ACEOF
  1006. fi
  1007.  
  1008. if test "$ac_init_help" = "recursive"; then
  1009.   # If there are subdirs, report their specific --help.
  1010.   ac_popdir=`pwd`
  1011.   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
  1012.     test -d $ac_dir || continue
  1013.     ac_builddir=.
  1014.  
  1015. if test "$ac_dir" != .; then
  1016.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
  1017.   # A "../" for each directory in $ac_dir_suffix.
  1018.   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
  1019. else
  1020.   ac_dir_suffix= ac_top_builddir=
  1021. fi
  1022.  
  1023. case $srcdir in
  1024.   .)  # No --srcdir option.  We are building in place.
  1025.     ac_srcdir=.
  1026.     if test -z "$ac_top_builddir"; then
  1027.        ac_top_srcdir=.
  1028.     else
  1029.        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
  1030.     fi ;;
  1031.   [\\/]* | ?:[\\/]* )  # Absolute path.
  1032.     ac_srcdir=$srcdir$ac_dir_suffix;
  1033.     ac_top_srcdir=$srcdir ;;
  1034.   *) # Relative path.
  1035.     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
  1036.     ac_top_srcdir=$ac_top_builddir$srcdir ;;
  1037. esac
  1038. # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
  1039. # absolute.
  1040. ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
  1041. ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
  1042. ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
  1043. ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
  1044.  
  1045.     cd $ac_dir
  1046.     # Check for guested configure; otherwise get Cygnus style configure.
  1047.     if test -f $ac_srcdir/configure.gnu; then
  1048.       echo
  1049.       $SHELL $ac_srcdir/configure.gnu  --help=recursive
  1050.     elif test -f $ac_srcdir/configure; then
  1051.       echo
  1052.       $SHELL $ac_srcdir/configure  --help=recursive
  1053.     elif test -f $ac_srcdir/configure.ac ||
  1054.            test -f $ac_srcdir/configure.in; then
  1055.       echo
  1056.       $ac_configure --help
  1057.     else
  1058.       echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
  1059.     fi
  1060.     cd $ac_popdir
  1061.   done
  1062. fi
  1063.  
  1064. test -n "$ac_init_help" && exit 0
  1065. if $ac_init_version; then
  1066.   cat <<\_ACEOF
  1067. vlc configure 0.5.3
  1068. generated by GNU Autoconf 2.57
  1069.  
  1070. Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
  1071. Free Software Foundation, Inc.
  1072. This configure script is free software; the Free Software Foundation
  1073. gives unlimited permission to copy, distribute and modify it.
  1074. _ACEOF
  1075.   exit 0
  1076. fi
  1077. exec 5>config.log
  1078. cat >&5 <<_ACEOF
  1079. This file contains any messages produced by compilers while
  1080. running configure, to aid debugging if configure makes a mistake.
  1081.  
  1082. It was created by vlc $as_me 0.5.3, which was
  1083. generated by GNU Autoconf 2.57.  Invocation command line was
  1084.  
  1085.   $ $0 $@
  1086.  
  1087. _ACEOF
  1088. {
  1089. cat <<_ASUNAME
  1090. ## --------- ##
  1091. ## Platform. ##
  1092. ## --------- ##
  1093.  
  1094. hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
  1095. uname -m = `(uname -m) 2>/dev/null || echo unknown`
  1096. uname -r = `(uname -r) 2>/dev/null || echo unknown`
  1097. uname -s = `(uname -s) 2>/dev/null || echo unknown`
  1098. uname -v = `(uname -v) 2>/dev/null || echo unknown`
  1099.  
  1100. /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
  1101. /bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
  1102.  
  1103. /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
  1104. /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
  1105. /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
  1106. hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
  1107. /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
  1108. /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
  1109. /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
  1110.  
  1111. _ASUNAME
  1112.  
  1113. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1114. for as_dir in $PATH
  1115. do
  1116.   IFS=$as_save_IFS
  1117.   test -z "$as_dir" && as_dir=.
  1118.   echo "PATH: $as_dir"
  1119. done
  1120.  
  1121. } >&5
  1122.  
  1123. cat >&5 <<_ACEOF
  1124.  
  1125.  
  1126. ## ----------- ##
  1127. ## Core tests. ##
  1128. ## ----------- ##
  1129.  
  1130. _ACEOF
  1131.  
  1132.  
  1133. # Keep a trace of the command line.
  1134. # Strip out --no-create and --no-recursion so they do not pile up.
  1135. # Strip out --silent because we don't want to record it for future runs.
  1136. # Also quote any args containing shell meta-characters.
  1137. # Make two passes to allow for proper duplicate-argument suppression.
  1138. ac_configure_args=
  1139. ac_configure_args0=
  1140. ac_configure_args1=
  1141. ac_sep=
  1142. ac_must_keep_next=false
  1143. for ac_pass in 1 2
  1144. do
  1145.   for ac_arg
  1146.   do
  1147.     case $ac_arg in
  1148.     -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
  1149.     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  1150.     | -silent | --silent | --silen | --sile | --sil)
  1151.       continue ;;
  1152.     *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
  1153.       ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
  1154.     esac
  1155.     case $ac_pass in
  1156.     1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
  1157.     2)
  1158.       ac_configure_args1="$ac_configure_args1 '$ac_arg'"
  1159.       if test $ac_must_keep_next = true; then
  1160.         ac_must_keep_next=false # Got value, back to normal.
  1161.       else
  1162.         case $ac_arg in
  1163.           *=* | --config-cache | -C | -disable-* | --disable-* \
  1164.           | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
  1165.           | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
  1166.           | -with-* | --with-* | -without-* | --without-* | --x)
  1167.             case "$ac_configure_args0 " in
  1168.               "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
  1169.             esac
  1170.             ;;
  1171.           -* ) ac_must_keep_next=true ;;
  1172.         esac
  1173.       fi
  1174.       ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
  1175.       # Get rid of the leading space.
  1176.       ac_sep=" "
  1177.       ;;
  1178.     esac
  1179.   done
  1180. done
  1181. $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
  1182. $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
  1183.  
  1184. # When interrupted or exit'd, cleanup temporary files, and complete
  1185. # config.log.  We remove comments because anyway the quotes in there
  1186. # would cause problems or look ugly.
  1187. # WARNING: Be sure not to use single quotes in there, as some shells,
  1188. # such as our DU 5.0 friend, will then `close' the trap.
  1189. trap 'exit_status=$?
  1190.   # Save into config.log some information that might help in debugging.
  1191.   {
  1192.     echo
  1193.  
  1194.     cat <<\_ASBOX
  1195. ## ---------------- ##
  1196. ## Cache variables. ##
  1197. ## ---------------- ##
  1198. _ASBOX
  1199.     echo
  1200.     # The following way of writing the cache mishandles newlines in values,
  1201. {
  1202.   (set) 2>&1 |
  1203.     case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
  1204.     *ac_space=\ *)
  1205.       sed -n \
  1206.         "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
  1207.           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
  1208.       ;;
  1209.     *)
  1210.       sed -n \
  1211.         "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
  1212.       ;;
  1213.     esac;
  1214. }
  1215.     echo
  1216.  
  1217.     cat <<\_ASBOX
  1218. ## ----------------- ##
  1219. ## Output variables. ##
  1220. ## ----------------- ##
  1221. _ASBOX
  1222.     echo
  1223.     for ac_var in $ac_subst_vars
  1224.     do
  1225.       eval ac_val=$`echo $ac_var`
  1226.       echo "$ac_var='"'"'$ac_val'"'"'"
  1227.     done | sort
  1228.     echo
  1229.  
  1230.     if test -n "$ac_subst_files"; then
  1231.       cat <<\_ASBOX
  1232. ## ------------- ##
  1233. ## Output files. ##
  1234. ## ------------- ##
  1235. _ASBOX
  1236.       echo
  1237.       for ac_var in $ac_subst_files
  1238.       do
  1239.     eval ac_val=$`echo $ac_var`
  1240.         echo "$ac_var='"'"'$ac_val'"'"'"
  1241.       done | sort
  1242.       echo
  1243.     fi
  1244.  
  1245.     if test -s confdefs.h; then
  1246.       cat <<\_ASBOX
  1247. ## ----------- ##
  1248. ## confdefs.h. ##
  1249. ## ----------- ##
  1250. _ASBOX
  1251.       echo
  1252.       sed "/^$/d" confdefs.h | sort
  1253.       echo
  1254.     fi
  1255.     test "$ac_signal" != 0 &&
  1256.       echo "$as_me: caught signal $ac_signal"
  1257.     echo "$as_me: exit $exit_status"
  1258.   } >&5
  1259.   rm -f core core.* *.core &&
  1260.   rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
  1261.     exit $exit_status
  1262.      ' 0
  1263. for ac_signal in 1 2 13 15; do
  1264.   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
  1265. done
  1266. ac_signal=0
  1267.  
  1268. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  1269. rm -rf conftest* confdefs.h
  1270. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  1271. echo >confdefs.h
  1272.  
  1273. # Predefined preprocessor variables.
  1274.  
  1275. cat >>confdefs.h <<_ACEOF
  1276. #define PACKAGE_NAME "$PACKAGE_NAME"
  1277. _ACEOF
  1278.  
  1279.  
  1280. cat >>confdefs.h <<_ACEOF
  1281. #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
  1282. _ACEOF
  1283.  
  1284.  
  1285. cat >>confdefs.h <<_ACEOF
  1286. #define PACKAGE_VERSION "$PACKAGE_VERSION"
  1287. _ACEOF
  1288.  
  1289.  
  1290. cat >>confdefs.h <<_ACEOF
  1291. #define PACKAGE_STRING "$PACKAGE_STRING"
  1292. _ACEOF
  1293.  
  1294.  
  1295. cat >>confdefs.h <<_ACEOF
  1296. #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
  1297. _ACEOF
  1298.  
  1299.  
  1300. # Let the site file select an alternate cache file if it wants to.
  1301. # Prefer explicitly selected file to automatically selected ones.
  1302. if test -z "$CONFIG_SITE"; then
  1303.   if test "x$prefix" != xNONE; then
  1304.     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  1305.   else
  1306.     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  1307.   fi
  1308. fi
  1309. for ac_site_file in $CONFIG_SITE; do
  1310.   if test -r "$ac_site_file"; then
  1311.     { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
  1312. echo "$as_me: loading site script $ac_site_file" >&6;}
  1313.     sed 's/^/| /' "$ac_site_file" >&5
  1314.     . "$ac_site_file"
  1315.   fi
  1316. done
  1317.  
  1318. if test -r "$cache_file"; then
  1319.   # Some versions of bash will fail to source /dev/null (special
  1320.   # files actually), so we avoid doing that.
  1321.   if test -f "$cache_file"; then
  1322.     { echo "$as_me:$LINENO: loading cache $cache_file" >&5
  1323. echo "$as_me: loading cache $cache_file" >&6;}
  1324.     case $cache_file in
  1325.       [\\/]* | ?:[\\/]* ) . $cache_file;;
  1326.       *)                      . ./$cache_file;;
  1327.     esac
  1328.   fi
  1329. else
  1330.   { echo "$as_me:$LINENO: creating cache $cache_file" >&5
  1331. echo "$as_me: creating cache $cache_file" >&6;}
  1332.   >$cache_file
  1333. fi
  1334.  
  1335. # Check that the precious variables saved in the cache have kept the same
  1336. # value.
  1337. ac_cache_corrupted=false
  1338. for ac_var in `(set) 2>&1 |
  1339.                sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
  1340.   eval ac_old_set=\$ac_cv_env_${ac_var}_set
  1341.   eval ac_new_set=\$ac_env_${ac_var}_set
  1342.   eval ac_old_val="\$ac_cv_env_${ac_var}_value"
  1343.   eval ac_new_val="\$ac_env_${ac_var}_value"
  1344.   case $ac_old_set,$ac_new_set in
  1345.     set,)
  1346.       { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
  1347. echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
  1348.       ac_cache_corrupted=: ;;
  1349.     ,set)
  1350.       { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
  1351. echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
  1352.       ac_cache_corrupted=: ;;
  1353.     ,);;
  1354.     *)
  1355.       if test "x$ac_old_val" != "x$ac_new_val"; then
  1356.         { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
  1357. echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
  1358.         { echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
  1359. echo "$as_me:   former value:  $ac_old_val" >&2;}
  1360.         { echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
  1361. echo "$as_me:   current value: $ac_new_val" >&2;}
  1362.         ac_cache_corrupted=:
  1363.       fi;;
  1364.   esac
  1365.   # Pass precious variables to config.status.
  1366.   if test "$ac_new_set" = set; then
  1367.     case $ac_new_val in
  1368.     *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
  1369.       ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
  1370.     *) ac_arg=$ac_var=$ac_new_val ;;
  1371.     esac
  1372.     case " $ac_configure_args " in
  1373.       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
  1374.       *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  1375.     esac
  1376.   fi
  1377. done
  1378. if $ac_cache_corrupted; then
  1379.   { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
  1380. echo "$as_me: error: changes in the environment can compromise the build" >&2;}
  1381.   { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
  1382. echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
  1383.    { (exit 1); exit 1; }; }
  1384. fi
  1385.  
  1386. ac_ext=c
  1387. ac_cpp='$CPP $CPPFLAGS'
  1388. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  1389. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  1390. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409.  
  1410.  
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417.  
  1418.  
  1419. CONFIGURE_LINE="$0 $*"
  1420. CODENAME="Natalya"
  1421.  
  1422.  
  1423.  
  1424. ac_aux_dir=
  1425. for ac_dir in autotools $srcdir/autotools; do
  1426.   if test -f $ac_dir/install-sh; then
  1427.     ac_aux_dir=$ac_dir
  1428.     ac_install_sh="$ac_aux_dir/install-sh -c"
  1429.     break
  1430.   elif test -f $ac_dir/install.sh; then
  1431.     ac_aux_dir=$ac_dir
  1432.     ac_install_sh="$ac_aux_dir/install.sh -c"
  1433.     break
  1434.   elif test -f $ac_dir/shtool; then
  1435.     ac_aux_dir=$ac_dir
  1436.     ac_install_sh="$ac_aux_dir/shtool install -c"
  1437.     break
  1438.   fi
  1439. done
  1440. if test -z "$ac_aux_dir"; then
  1441.   { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in autotools $srcdir/autotools" >&5
  1442. echo "$as_me: error: cannot find install-sh or install.sh in autotools $srcdir/autotools" >&2;}
  1443.    { (exit 1); exit 1; }; }
  1444. fi
  1445. ac_config_guess="$SHELL $ac_aux_dir/config.guess"
  1446. ac_config_sub="$SHELL $ac_aux_dir/config.sub"
  1447. ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
  1448.  
  1449. # Make sure we can run config.sub.
  1450. $ac_config_sub sun4 >/dev/null 2>&1 ||
  1451.   { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
  1452. echo "$as_me: error: cannot run $ac_config_sub" >&2;}
  1453.    { (exit 1); exit 1; }; }
  1454.  
  1455. echo "$as_me:$LINENO: checking build system type" >&5
  1456. echo $ECHO_N "checking build system type... $ECHO_C" >&6
  1457. if test "${ac_cv_build+set}" = set; then
  1458.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1459. else
  1460.   ac_cv_build_alias=$build_alias
  1461. test -z "$ac_cv_build_alias" &&
  1462.   ac_cv_build_alias=`$ac_config_guess`
  1463. test -z "$ac_cv_build_alias" &&
  1464.   { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
  1465. echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
  1466.    { (exit 1); exit 1; }; }
  1467. ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
  1468.   { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
  1469. echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
  1470.    { (exit 1); exit 1; }; }
  1471.  
  1472. fi
  1473. echo "$as_me:$LINENO: result: $ac_cv_build" >&5
  1474. echo "${ECHO_T}$ac_cv_build" >&6
  1475. build=$ac_cv_build
  1476. build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  1477. build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  1478. build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  1479.  
  1480.  
  1481. echo "$as_me:$LINENO: checking host system type" >&5
  1482. echo $ECHO_N "checking host system type... $ECHO_C" >&6
  1483. if test "${ac_cv_host+set}" = set; then
  1484.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1485. else
  1486.   ac_cv_host_alias=$host_alias
  1487. test -z "$ac_cv_host_alias" &&
  1488.   ac_cv_host_alias=$ac_cv_build_alias
  1489. ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
  1490.   { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
  1491. echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
  1492.    { (exit 1); exit 1; }; }
  1493.  
  1494. fi
  1495. echo "$as_me:$LINENO: result: $ac_cv_host" >&5
  1496. echo "${ECHO_T}$ac_cv_host" >&6
  1497. host=$ac_cv_host
  1498. host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  1499. host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  1500. host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  1501.  
  1502.  
  1503. echo "$as_me:$LINENO: checking target system type" >&5
  1504. echo $ECHO_N "checking target system type... $ECHO_C" >&6
  1505. if test "${ac_cv_target+set}" = set; then
  1506.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1507. else
  1508.   ac_cv_target_alias=$target_alias
  1509. test "x$ac_cv_target_alias" = "x" &&
  1510.   ac_cv_target_alias=$ac_cv_host_alias
  1511. ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
  1512.   { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
  1513. echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
  1514.    { (exit 1); exit 1; }; }
  1515.  
  1516. fi
  1517. echo "$as_me:$LINENO: result: $ac_cv_target" >&5
  1518. echo "${ECHO_T}$ac_cv_target" >&6
  1519. target=$ac_cv_target
  1520. target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  1521. target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  1522. target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  1523.  
  1524.  
  1525. # The aliases save the names the user supplied, while $host etc.
  1526. # will get canonicalized.
  1527. test -n "$target_alias" &&
  1528.   test "$program_prefix$program_suffix$program_transform_name" = \
  1529.     NONENONEs,x,x, &&
  1530.   program_prefix=${target_alias}-
  1531.  
  1532. am__api_version="1.7"
  1533. # Find a good install program.  We prefer a C program (faster),
  1534. # so one script is as good as another.  But avoid the broken or
  1535. # incompatible versions:
  1536. # SysV /etc/install, /usr/sbin/install
  1537. # SunOS /usr/etc/install
  1538. # IRIX /sbin/install
  1539. # AIX /bin/install
  1540. # AmigaOS /C/install, which installs bootblocks on floppy discs
  1541. # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
  1542. # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  1543. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  1544. # ./install, which can be erroneously created by make from ./install.sh.
  1545. echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
  1546. echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
  1547. if test -z "$INSTALL"; then
  1548. if test "${ac_cv_path_install+set}" = set; then
  1549.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1550. else
  1551.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1552. for as_dir in $PATH
  1553. do
  1554.   IFS=$as_save_IFS
  1555.   test -z "$as_dir" && as_dir=.
  1556.   # Account for people who put trailing slashes in PATH elements.
  1557. case $as_dir/ in
  1558.   ./ | .// | /cC/* | \
  1559.   /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
  1560.   /usr/ucb/* ) ;;
  1561.   *)
  1562.     # OSF1 and SCO ODT 3.0 have their own names for install.
  1563.     # Don't use installbsd from OSF since it installs stuff as root
  1564.     # by default.
  1565.     for ac_prog in ginstall scoinst install; do
  1566.       for ac_exec_ext in '' $ac_executable_extensions; do
  1567.         if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
  1568.           if test $ac_prog = install &&
  1569.             grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  1570.             # AIX install.  It has an incompatible calling convention.
  1571.             :
  1572.           elif test $ac_prog = install &&
  1573.             grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  1574.             # program-specific install script used by HP pwplus--don't use.
  1575.             :
  1576.           else
  1577.             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
  1578.             break 3
  1579.           fi
  1580.         fi
  1581.       done
  1582.     done
  1583.     ;;
  1584. esac
  1585. done
  1586.  
  1587.  
  1588. fi
  1589.   if test "${ac_cv_path_install+set}" = set; then
  1590.     INSTALL=$ac_cv_path_install
  1591.   else
  1592.     # As a last resort, use the slow shell script.  We don't cache a
  1593.     # path for INSTALL within a source directory, because that will
  1594.     # break other packages using the cache if that directory is
  1595.     # removed, or if the path is relative.
  1596.     INSTALL=$ac_install_sh
  1597.   fi
  1598. fi
  1599. echo "$as_me:$LINENO: result: $INSTALL" >&5
  1600. echo "${ECHO_T}$INSTALL" >&6
  1601.  
  1602. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  1603. # It thinks the first close brace ends the variable substitution.
  1604. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  1605.  
  1606. test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  1607.  
  1608. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  1609.  
  1610. echo "$as_me:$LINENO: checking whether build environment is sane" >&5
  1611. echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
  1612. # Just in case
  1613. sleep 1
  1614. echo timestamp > conftest.file
  1615. # Do `set' in a subshell so we don't clobber the current shell's
  1616. # arguments.  Must try -L first in case configure is actually a
  1617. # symlink; some systems play weird games with the mod time of symlinks
  1618. # (eg FreeBSD returns the mod time of the symlink's containing
  1619. # directory).
  1620. if (
  1621.    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
  1622.    if test "$*" = "X"; then
  1623.       # -L didn't work.
  1624.       set X `ls -t $srcdir/configure conftest.file`
  1625.    fi
  1626.    rm -f conftest.file
  1627.    if test "$*" != "X $srcdir/configure conftest.file" \
  1628.       && test "$*" != "X conftest.file $srcdir/configure"; then
  1629.  
  1630.       # If neither matched, then we have a broken ls.  This can happen
  1631.       # if, for instance, CONFIG_SHELL is bash and it inherits a
  1632.       # broken ls alias from the environment.  This has actually
  1633.       # happened.  Such a system could not be considered "sane".
  1634.       { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
  1635. alias in your environment" >&5
  1636. echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
  1637. alias in your environment" >&2;}
  1638.    { (exit 1); exit 1; }; }
  1639.    fi
  1640.  
  1641.    test "$2" = conftest.file
  1642.    )
  1643. then
  1644.    # Ok.
  1645.    :
  1646. else
  1647.    { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
  1648. Check your system clock" >&5
  1649. echo "$as_me: error: newly created file is older than distributed files!
  1650. Check your system clock" >&2;}
  1651.    { (exit 1); exit 1; }; }
  1652. fi
  1653. echo "$as_me:$LINENO: result: yes" >&5
  1654. echo "${ECHO_T}yes" >&6
  1655. test "$program_prefix" != NONE &&
  1656.   program_transform_name="s,^,$program_prefix,;$program_transform_name"
  1657. # Use a double $ so make ignores it.
  1658. test "$program_suffix" != NONE &&
  1659.   program_transform_name="s,\$,$program_suffix,;$program_transform_name"
  1660. # Double any \ or $.  echo might interpret backslashes.
  1661. # By default was `s,x,x', remove it if useless.
  1662. cat <<\_ACEOF >conftest.sed
  1663. s/[\\$]/&&/g;s/;s,x,x,$//
  1664. _ACEOF
  1665. program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
  1666. rm conftest.sed
  1667.  
  1668.  
  1669. # expand $ac_aux_dir to an absolute path
  1670. am_aux_dir=`cd $ac_aux_dir && pwd`
  1671.  
  1672. test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
  1673. # Use eval to expand $SHELL
  1674. if eval "$MISSING --run true"; then
  1675.   am_missing_run="$MISSING --run "
  1676. else
  1677.   am_missing_run=
  1678.   { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
  1679. echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
  1680. fi
  1681.  
  1682. for ac_prog in gawk mawk nawk awk
  1683. do
  1684.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  1685. set dummy $ac_prog; ac_word=$2
  1686. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1687. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1688. if test "${ac_cv_prog_AWK+set}" = set; then
  1689.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1690. else
  1691.   if test -n "$AWK"; then
  1692.   ac_cv_prog_AWK="$AWK" # Let the user override the test.
  1693. else
  1694. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1695. for as_dir in $PATH
  1696. do
  1697.   IFS=$as_save_IFS
  1698.   test -z "$as_dir" && as_dir=.
  1699.   for ac_exec_ext in '' $ac_executable_extensions; do
  1700.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1701.     ac_cv_prog_AWK="$ac_prog"
  1702.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1703.     break 2
  1704.   fi
  1705. done
  1706. done
  1707.  
  1708. fi
  1709. fi
  1710. AWK=$ac_cv_prog_AWK
  1711. if test -n "$AWK"; then
  1712.   echo "$as_me:$LINENO: result: $AWK" >&5
  1713. echo "${ECHO_T}$AWK" >&6
  1714. else
  1715.   echo "$as_me:$LINENO: result: no" >&5
  1716. echo "${ECHO_T}no" >&6
  1717. fi
  1718.  
  1719.   test -n "$AWK" && break
  1720. done
  1721.  
  1722. echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
  1723. echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
  1724. set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
  1725. if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
  1726.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1727. else
  1728.   cat >conftest.make <<\_ACEOF
  1729. all:
  1730.     @echo 'ac_maketemp="$(MAKE)"'
  1731. _ACEOF
  1732. # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  1733. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
  1734. if test -n "$ac_maketemp"; then
  1735.   eval ac_cv_prog_make_${ac_make}_set=yes
  1736. else
  1737.   eval ac_cv_prog_make_${ac_make}_set=no
  1738. fi
  1739. rm -f conftest.make
  1740. fi
  1741. if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  1742.   echo "$as_me:$LINENO: result: yes" >&5
  1743. echo "${ECHO_T}yes" >&6
  1744.   SET_MAKE=
  1745. else
  1746.   echo "$as_me:$LINENO: result: no" >&5
  1747. echo "${ECHO_T}no" >&6
  1748.   SET_MAKE="MAKE=${MAKE-make}"
  1749. fi
  1750.  
  1751.  # test to see if srcdir already configured
  1752. if test "`cd $srcdir && pwd`" != "`pwd`" &&
  1753.    test -f $srcdir/config.status; then
  1754.   { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
  1755. echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
  1756.    { (exit 1); exit 1; }; }
  1757. fi
  1758.  
  1759. # test whether we have cygpath
  1760. if test -z "$CYGPATH_W"; then
  1761.   if (cygpath --version) >/dev/null 2>/dev/null; then
  1762.     CYGPATH_W='cygpath -w'
  1763.   else
  1764.     CYGPATH_W=echo
  1765.   fi
  1766. fi
  1767.  
  1768.  
  1769. # Define the identity of the package.
  1770.  PACKAGE=vlc
  1771.  VERSION=0.5.3
  1772.  
  1773.  
  1774. cat >>confdefs.h <<_ACEOF
  1775. #define PACKAGE "$PACKAGE"
  1776. _ACEOF
  1777.  
  1778.  
  1779. cat >>confdefs.h <<_ACEOF
  1780. #define VERSION "$VERSION"
  1781. _ACEOF
  1782.  
  1783. # Some tools Automake needs.
  1784.  
  1785. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
  1786.  
  1787.  
  1788. AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
  1789.  
  1790.  
  1791. AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
  1792.  
  1793.  
  1794. AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
  1795.  
  1796.  
  1797. MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
  1798.  
  1799.  
  1800. AMTAR=${AMTAR-"${am_missing_run}tar"}
  1801.  
  1802. install_sh=${install_sh-"$am_aux_dir/install-sh"}
  1803.  
  1804. # Installed binaries are usually stripped using `strip' when the user
  1805. # run `make install-strip'.  However `strip' might not be the right
  1806. # tool to use in cross-compilation environments, therefore Automake
  1807. # will honor the `STRIP' environment variable to overrule this program.
  1808. if test "$cross_compiling" != no; then
  1809.   if test -n "$ac_tool_prefix"; then
  1810.   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  1811. set dummy ${ac_tool_prefix}strip; ac_word=$2
  1812. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1813. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1814. if test "${ac_cv_prog_STRIP+set}" = set; then
  1815.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1816. else
  1817.   if test -n "$STRIP"; then
  1818.   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
  1819. else
  1820. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1821. for as_dir in $PATH
  1822. do
  1823.   IFS=$as_save_IFS
  1824.   test -z "$as_dir" && as_dir=.
  1825.   for ac_exec_ext in '' $ac_executable_extensions; do
  1826.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1827.     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
  1828.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1829.     break 2
  1830.   fi
  1831. done
  1832. done
  1833.  
  1834. fi
  1835. fi
  1836. STRIP=$ac_cv_prog_STRIP
  1837. if test -n "$STRIP"; then
  1838.   echo "$as_me:$LINENO: result: $STRIP" >&5
  1839. echo "${ECHO_T}$STRIP" >&6
  1840. else
  1841.   echo "$as_me:$LINENO: result: no" >&5
  1842. echo "${ECHO_T}no" >&6
  1843. fi
  1844.  
  1845. fi
  1846. if test -z "$ac_cv_prog_STRIP"; then
  1847.   ac_ct_STRIP=$STRIP
  1848.   # Extract the first word of "strip", so it can be a program name with args.
  1849. set dummy strip; ac_word=$2
  1850. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1851. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1852. if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
  1853.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1854. else
  1855.   if test -n "$ac_ct_STRIP"; then
  1856.   ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
  1857. else
  1858. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1859. for as_dir in $PATH
  1860. do
  1861.   IFS=$as_save_IFS
  1862.   test -z "$as_dir" && as_dir=.
  1863.   for ac_exec_ext in '' $ac_executable_extensions; do
  1864.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1865.     ac_cv_prog_ac_ct_STRIP="strip"
  1866.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1867.     break 2
  1868.   fi
  1869. done
  1870. done
  1871.  
  1872.   test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
  1873. fi
  1874. fi
  1875. ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
  1876. if test -n "$ac_ct_STRIP"; then
  1877.   echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
  1878. echo "${ECHO_T}$ac_ct_STRIP" >&6
  1879. else
  1880.   echo "$as_me:$LINENO: result: no" >&5
  1881. echo "${ECHO_T}no" >&6
  1882. fi
  1883.  
  1884.   STRIP=$ac_ct_STRIP
  1885. else
  1886.   STRIP="$ac_cv_prog_STRIP"
  1887. fi
  1888.  
  1889. fi
  1890. INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
  1891.  
  1892. # We need awk for the "check" target.  The system "awk" is bad on
  1893. # some platforms.
  1894.  
  1895.  
  1896.  
  1897.           ac_config_headers="$ac_config_headers config.h"
  1898.  
  1899.  
  1900. CPPFLAGS_save="${CPPFLAGS}"
  1901. CFLAGS_save="${CFLAGS}"
  1902. CXXFLAGS_save="${CXXFLAGS}"
  1903. OBJCFLAGS_save="${OBJCFLAGS}"
  1904. LDFLAGS_save="${LDFLAGS}"
  1905.  
  1906. ac_ext=c
  1907. ac_cpp='$CPP $CPPFLAGS'
  1908. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  1909. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  1910. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  1911. if test -n "$ac_tool_prefix"; then
  1912.   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
  1913. set dummy ${ac_tool_prefix}gcc; ac_word=$2
  1914. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1915. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1916. if test "${ac_cv_prog_CC+set}" = set; then
  1917.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1918. else
  1919.   if test -n "$CC"; then
  1920.   ac_cv_prog_CC="$CC" # Let the user override the test.
  1921. else
  1922. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1923. for as_dir in $PATH
  1924. do
  1925.   IFS=$as_save_IFS
  1926.   test -z "$as_dir" && as_dir=.
  1927.   for ac_exec_ext in '' $ac_executable_extensions; do
  1928.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1929.     ac_cv_prog_CC="${ac_tool_prefix}gcc"
  1930.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1931.     break 2
  1932.   fi
  1933. done
  1934. done
  1935.  
  1936. fi
  1937. fi
  1938. CC=$ac_cv_prog_CC
  1939. if test -n "$CC"; then
  1940.   echo "$as_me:$LINENO: result: $CC" >&5
  1941. echo "${ECHO_T}$CC" >&6
  1942. else
  1943.   echo "$as_me:$LINENO: result: no" >&5
  1944. echo "${ECHO_T}no" >&6
  1945. fi
  1946.  
  1947. fi
  1948. if test -z "$ac_cv_prog_CC"; then
  1949.   ac_ct_CC=$CC
  1950.   # Extract the first word of "gcc", so it can be a program name with args.
  1951. set dummy gcc; ac_word=$2
  1952. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1953. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1954. if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
  1955.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1956. else
  1957.   if test -n "$ac_ct_CC"; then
  1958.   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
  1959. else
  1960. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1961. for as_dir in $PATH
  1962. do
  1963.   IFS=$as_save_IFS
  1964.   test -z "$as_dir" && as_dir=.
  1965.   for ac_exec_ext in '' $ac_executable_extensions; do
  1966.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1967.     ac_cv_prog_ac_ct_CC="gcc"
  1968.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1969.     break 2
  1970.   fi
  1971. done
  1972. done
  1973.  
  1974. fi
  1975. fi
  1976. ac_ct_CC=$ac_cv_prog_ac_ct_CC
  1977. if test -n "$ac_ct_CC"; then
  1978.   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
  1979. echo "${ECHO_T}$ac_ct_CC" >&6
  1980. else
  1981.   echo "$as_me:$LINENO: result: no" >&5
  1982. echo "${ECHO_T}no" >&6
  1983. fi
  1984.  
  1985.   CC=$ac_ct_CC
  1986. else
  1987.   CC="$ac_cv_prog_CC"
  1988. fi
  1989.  
  1990. if test -z "$CC"; then
  1991.   if test -n "$ac_tool_prefix"; then
  1992.   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
  1993. set dummy ${ac_tool_prefix}cc; ac_word=$2
  1994. echo "$as_me:$LINENO: checking for $ac_word" >&5
  1995. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  1996. if test "${ac_cv_prog_CC+set}" = set; then
  1997.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1998. else
  1999.   if test -n "$CC"; then
  2000.   ac_cv_prog_CC="$CC" # Let the user override the test.
  2001. else
  2002. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2003. for as_dir in $PATH
  2004. do
  2005.   IFS=$as_save_IFS
  2006.   test -z "$as_dir" && as_dir=.
  2007.   for ac_exec_ext in '' $ac_executable_extensions; do
  2008.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2009.     ac_cv_prog_CC="${ac_tool_prefix}cc"
  2010.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  2011.     break 2
  2012.   fi
  2013. done
  2014. done
  2015.  
  2016. fi
  2017. fi
  2018. CC=$ac_cv_prog_CC
  2019. if test -n "$CC"; then
  2020.   echo "$as_me:$LINENO: result: $CC" >&5
  2021. echo "${ECHO_T}$CC" >&6
  2022. else
  2023.   echo "$as_me:$LINENO: result: no" >&5
  2024. echo "${ECHO_T}no" >&6
  2025. fi
  2026.  
  2027. fi
  2028. if test -z "$ac_cv_prog_CC"; then
  2029.   ac_ct_CC=$CC
  2030.   # Extract the first word of "cc", so it can be a program name with args.
  2031. set dummy cc; ac_word=$2
  2032. echo "$as_me:$LINENO: checking for $ac_word" >&5
  2033. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  2034. if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
  2035.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2036. else
  2037.   if test -n "$ac_ct_CC"; then
  2038.   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
  2039. else
  2040. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2041. for as_dir in $PATH
  2042. do
  2043.   IFS=$as_save_IFS
  2044.   test -z "$as_dir" && as_dir=.
  2045.   for ac_exec_ext in '' $ac_executable_extensions; do
  2046.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2047.     ac_cv_prog_ac_ct_CC="cc"
  2048.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  2049.     break 2
  2050.   fi
  2051. done
  2052. done
  2053.  
  2054. fi
  2055. fi
  2056. ac_ct_CC=$ac_cv_prog_ac_ct_CC
  2057. if test -n "$ac_ct_CC"; then
  2058.   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
  2059. echo "${ECHO_T}$ac_ct_CC" >&6
  2060. else
  2061.   echo "$as_me:$LINENO: result: no" >&5
  2062. echo "${ECHO_T}no" >&6
  2063. fi
  2064.  
  2065.   CC=$ac_ct_CC
  2066. else
  2067.   CC="$ac_cv_prog_CC"
  2068. fi
  2069.  
  2070. fi
  2071. if test -z "$CC"; then
  2072.   # Extract the first word of "cc", so it can be a program name with args.
  2073. set dummy cc; ac_word=$2
  2074. echo "$as_me:$LINENO: checking for $ac_word" >&5
  2075. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  2076. if test "${ac_cv_prog_CC+set}" = set; then
  2077.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2078. else
  2079.   if test -n "$CC"; then
  2080.   ac_cv_prog_CC="$CC" # Let the user override the test.
  2081. else
  2082.   ac_prog_rejected=no
  2083. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2084. for as_dir in $PATH
  2085. do
  2086.   IFS=$as_save_IFS
  2087.   test -z "$as_dir" && as_dir=.
  2088.   for ac_exec_ext in '' $ac_executable_extensions; do
  2089.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2090.     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
  2091.        ac_prog_rejected=yes
  2092.        continue
  2093.      fi
  2094.     ac_cv_prog_CC="cc"
  2095.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  2096.     break 2
  2097.   fi
  2098. done
  2099. done
  2100.  
  2101. if test $ac_prog_rejected = yes; then
  2102.   # We found a bogon in the path, so make sure we never use it.
  2103.   set dummy $ac_cv_prog_CC
  2104.   shift
  2105.   if test $# != 0; then
  2106.     # We chose a different compiler from the bogus one.
  2107.     # However, it has the same basename, so the bogon will be chosen
  2108.     # first if we set CC to just the basename; use the full file name.
  2109.     shift
  2110.     ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
  2111.   fi
  2112. fi
  2113. fi
  2114. fi
  2115. CC=$ac_cv_prog_CC
  2116. if test -n "$CC"; then
  2117.   echo "$as_me:$LINENO: result: $CC" >&5
  2118. echo "${ECHO_T}$CC" >&6
  2119. else
  2120.   echo "$as_me:$LINENO: result: no" >&5
  2121. echo "${ECHO_T}no" >&6
  2122. fi
  2123.  
  2124. fi
  2125. if test -z "$CC"; then
  2126.   if test -n "$ac_tool_prefix"; then
  2127.   for ac_prog in cl
  2128.   do
  2129.     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
  2130. set dummy $ac_tool_prefix$ac_prog; ac_word=$2
  2131. echo "$as_me:$LINENO: checking for $ac_word" >&5
  2132. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  2133. if test "${ac_cv_prog_CC+set}" = set; then
  2134.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2135. else
  2136.   if test -n "$CC"; then
  2137.   ac_cv_prog_CC="$CC" # Let the user override the test.
  2138. else
  2139. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2140. for as_dir in $PATH
  2141. do
  2142.   IFS=$as_save_IFS
  2143.   test -z "$as_dir" && as_dir=.
  2144.   for ac_exec_ext in '' $ac_executable_extensions; do
  2145.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2146.     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
  2147.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  2148.     break 2
  2149.   fi
  2150. done
  2151. done
  2152.  
  2153. fi
  2154. fi
  2155. CC=$ac_cv_prog_CC
  2156. if test -n "$CC"; then
  2157.   echo "$as_me:$LINENO: result: $CC" >&5
  2158. echo "${ECHO_T}$CC" >&6
  2159. else
  2160.   echo "$as_me:$LINENO: result: no" >&5
  2161. echo "${ECHO_T}no" >&6
  2162. fi
  2163.  
  2164.     test -n "$CC" && break
  2165.   done
  2166. fi
  2167. if test -z "$CC"; then
  2168.   ac_ct_CC=$CC
  2169.   for ac_prog in cl
  2170. do
  2171.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  2172. set dummy $ac_prog; ac_word=$2
  2173. echo "$as_me:$LINENO: checking for $ac_word" >&5
  2174. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  2175. if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
  2176.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2177. else
  2178.   if test -n "$ac_ct_CC"; then
  2179.   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
  2180. else
  2181. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2182. for as_dir in $PATH
  2183. do
  2184.   IFS=$as_save_IFS
  2185.   test -z "$as_dir" && as_dir=.
  2186.   for ac_exec_ext in '' $ac_executable_extensions; do
  2187.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2188.     ac_cv_prog_ac_ct_CC="$ac_prog"
  2189.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  2190.     break 2
  2191.   fi
  2192. done
  2193. done
  2194.  
  2195. fi
  2196. fi
  2197. ac_ct_CC=$ac_cv_prog_ac_ct_CC
  2198. if test -n "$ac_ct_CC"; then
  2199.   echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
  2200. echo "${ECHO_T}$ac_ct_CC" >&6
  2201. else
  2202.   echo "$as_me:$LINENO: result: no" >&5
  2203. echo "${ECHO_T}no" >&6
  2204. fi
  2205.  
  2206.   test -n "$ac_ct_CC" && break
  2207. done
  2208.  
  2209.   CC=$ac_ct_CC
  2210. fi
  2211.  
  2212. fi
  2213.  
  2214.  
  2215. test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
  2216. See \`config.log' for more details." >&5
  2217. echo "$as_me: error: no acceptable C compiler found in \$PATH
  2218. See \`config.log' for more details." >&2;}
  2219.    { (exit 1); exit 1; }; }
  2220.  
  2221. # Provide some information about the compiler.
  2222. echo "$as_me:$LINENO:" \
  2223.      "checking for C compiler version" >&5
  2224. ac_compiler=`set X $ac_compile; echo $2`
  2225. { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
  2226.   (eval $ac_compiler --version </dev/null >&5) 2>&5
  2227.   ac_status=$?
  2228.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2229.   (exit $ac_status); }
  2230. { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
  2231.   (eval $ac_compiler -v </dev/null >&5) 2>&5
  2232.   ac_status=$?
  2233.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2234.   (exit $ac_status); }
  2235. { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
  2236.   (eval $ac_compiler -V </dev/null >&5) 2>&5
  2237.   ac_status=$?
  2238.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2239.   (exit $ac_status); }
  2240.  
  2241. cat >conftest.$ac_ext <<_ACEOF
  2242. #line $LINENO "configure"
  2243. /* confdefs.h.  */
  2244. _ACEOF
  2245. cat confdefs.h >>conftest.$ac_ext
  2246. cat >>conftest.$ac_ext <<_ACEOF
  2247. /* end confdefs.h.  */
  2248.  
  2249. int
  2250. main ()
  2251. {
  2252.  
  2253.   ;
  2254.   return 0;
  2255. }
  2256. _ACEOF
  2257. ac_clean_files_save=$ac_clean_files
  2258. ac_clean_files="$ac_clean_files a.out a.exe b.out"
  2259. # Try to create an executable without -o first, disregard a.out.
  2260. # It will help us diagnose broken compilers, and finding out an intuition
  2261. # of exeext.
  2262. echo "$as_me:$LINENO: checking for C compiler default output" >&5
  2263. echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
  2264. ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
  2265. if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
  2266.   (eval $ac_link_default) 2>&5
  2267.   ac_status=$?
  2268.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2269.   (exit $ac_status); }; then
  2270.   # Find the output, starting from the most likely.  This scheme is
  2271. # not robust to junk in `.', hence go to wildcards (a.*) only as a last
  2272. # resort.
  2273.  
  2274. # Be careful to initialize this variable, since it used to be cached.
  2275. # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
  2276. ac_cv_exeext=
  2277. # b.out is created by i960 compilers.
  2278. for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
  2279. do
  2280.   test -f "$ac_file" || continue
  2281.   case $ac_file in
  2282.     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
  2283.         ;;
  2284.     conftest.$ac_ext )
  2285.         # This is the source file.
  2286.         ;;
  2287.     [ab].out )
  2288.         # We found the default executable, but exeext='' is most
  2289.         # certainly right.
  2290.         break;;
  2291.     *.* )
  2292.         ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
  2293.         # FIXME: I believe we export ac_cv_exeext for Libtool,
  2294.         # but it would be cool to find out if it's true.  Does anybody
  2295.         # maintain Libtool? --akim.
  2296.         export ac_cv_exeext
  2297.         break;;
  2298.     * )
  2299.         break;;
  2300.   esac
  2301. done
  2302. else
  2303.   echo "$as_me: failed program was:" >&5
  2304. sed 's/^/| /' conftest.$ac_ext >&5
  2305.  
  2306. { { echo "$as_me:$LINENO: error: C compiler cannot create executables
  2307. See \`config.log' for more details." >&5
  2308. echo "$as_me: error: C compiler cannot create executables
  2309. See \`config.log' for more details." >&2;}
  2310.    { (exit 77); exit 77; }; }
  2311. fi
  2312.  
  2313. ac_exeext=$ac_cv_exeext
  2314. echo "$as_me:$LINENO: result: $ac_file" >&5
  2315. echo "${ECHO_T}$ac_file" >&6
  2316.  
  2317. # Check the compiler produces executables we can run.  If not, either
  2318. # the compiler is broken, or we cross compile.
  2319. echo "$as_me:$LINENO: checking whether the C compiler works" >&5
  2320. echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
  2321. # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
  2322. # If not cross compiling, check that we can run a simple program.
  2323. if test "$cross_compiling" != yes; then
  2324.   if { ac_try='./$ac_file'
  2325.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2326.   (eval $ac_try) 2>&5
  2327.   ac_status=$?
  2328.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2329.   (exit $ac_status); }; }; then
  2330.     cross_compiling=no
  2331.   else
  2332.     if test "$cross_compiling" = maybe; then
  2333.     cross_compiling=yes
  2334.     else
  2335.     { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
  2336. If you meant to cross compile, use \`--host'.
  2337. See \`config.log' for more details." >&5
  2338. echo "$as_me: error: cannot run C compiled programs.
  2339. If you meant to cross compile, use \`--host'.
  2340. See \`config.log' for more details." >&2;}
  2341.    { (exit 1); exit 1; }; }
  2342.     fi
  2343.   fi
  2344. fi
  2345. echo "$as_me:$LINENO: result: yes" >&5
  2346. echo "${ECHO_T}yes" >&6
  2347.  
  2348. rm -f a.out a.exe conftest$ac_cv_exeext b.out
  2349. ac_clean_files=$ac_clean_files_save
  2350. # Check the compiler produces executables we can run.  If not, either
  2351. # the compiler is broken, or we cross compile.
  2352. echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
  2353. echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
  2354. echo "$as_me:$LINENO: result: $cross_compiling" >&5
  2355. echo "${ECHO_T}$cross_compiling" >&6
  2356.  
  2357. echo "$as_me:$LINENO: checking for suffix of executables" >&5
  2358. echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
  2359. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  2360.   (eval $ac_link) 2>&5
  2361.   ac_status=$?
  2362.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2363.   (exit $ac_status); }; then
  2364.   # If both `conftest.exe' and `conftest' are `present' (well, observable)
  2365. # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
  2366. # work properly (i.e., refer to `conftest.exe'), while it won't with
  2367. # `rm'.
  2368. for ac_file in conftest.exe conftest conftest.*; do
  2369.   test -f "$ac_file" || continue
  2370.   case $ac_file in
  2371.     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
  2372.     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
  2373.           export ac_cv_exeext
  2374.           break;;
  2375.     * ) break;;
  2376.   esac
  2377. done
  2378. else
  2379.   { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
  2380. See \`config.log' for more details." >&5
  2381. echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
  2382. See \`config.log' for more details." >&2;}
  2383.    { (exit 1); exit 1; }; }
  2384. fi
  2385.  
  2386. rm -f conftest$ac_cv_exeext
  2387. echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
  2388. echo "${ECHO_T}$ac_cv_exeext" >&6
  2389.  
  2390. rm -f conftest.$ac_ext
  2391. EXEEXT=$ac_cv_exeext
  2392. ac_exeext=$EXEEXT
  2393. echo "$as_me:$LINENO: checking for suffix of object files" >&5
  2394. echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
  2395. if test "${ac_cv_objext+set}" = set; then
  2396.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2397. else
  2398.   cat >conftest.$ac_ext <<_ACEOF
  2399. #line $LINENO "configure"
  2400. /* confdefs.h.  */
  2401. _ACEOF
  2402. cat confdefs.h >>conftest.$ac_ext
  2403. cat >>conftest.$ac_ext <<_ACEOF
  2404. /* end confdefs.h.  */
  2405.  
  2406. int
  2407. main ()
  2408. {
  2409.  
  2410.   ;
  2411.   return 0;
  2412. }
  2413. _ACEOF
  2414. rm -f conftest.o conftest.obj
  2415. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2416.   (eval $ac_compile) 2>&5
  2417.   ac_status=$?
  2418.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2419.   (exit $ac_status); }; then
  2420.   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
  2421.   case $ac_file in
  2422.     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
  2423.     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
  2424.        break;;
  2425.   esac
  2426. done
  2427. else
  2428.   echo "$as_me: failed program was:" >&5
  2429. sed 's/^/| /' conftest.$ac_ext >&5
  2430.  
  2431. { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
  2432. See \`config.log' for more details." >&5
  2433. echo "$as_me: error: cannot compute suffix of object files: cannot compile
  2434. See \`config.log' for more details." >&2;}
  2435.    { (exit 1); exit 1; }; }
  2436. fi
  2437.  
  2438. rm -f conftest.$ac_cv_objext conftest.$ac_ext
  2439. fi
  2440. echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
  2441. echo "${ECHO_T}$ac_cv_objext" >&6
  2442. OBJEXT=$ac_cv_objext
  2443. ac_objext=$OBJEXT
  2444. echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
  2445. echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
  2446. if test "${ac_cv_c_compiler_gnu+set}" = set; then
  2447.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2448. else
  2449.   cat >conftest.$ac_ext <<_ACEOF
  2450. #line $LINENO "configure"
  2451. /* confdefs.h.  */
  2452. _ACEOF
  2453. cat confdefs.h >>conftest.$ac_ext
  2454. cat >>conftest.$ac_ext <<_ACEOF
  2455. /* end confdefs.h.  */
  2456.  
  2457. int
  2458. main ()
  2459. {
  2460. #ifndef __GNUC__
  2461.        choke me
  2462. #endif
  2463.  
  2464.   ;
  2465.   return 0;
  2466. }
  2467. _ACEOF
  2468. rm -f conftest.$ac_objext
  2469. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2470.   (eval $ac_compile) 2>&5
  2471.   ac_status=$?
  2472.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2473.   (exit $ac_status); } &&
  2474.          { ac_try='test -s conftest.$ac_objext'
  2475.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2476.   (eval $ac_try) 2>&5
  2477.   ac_status=$?
  2478.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2479.   (exit $ac_status); }; }; then
  2480.   ac_compiler_gnu=yes
  2481. else
  2482.   echo "$as_me: failed program was:" >&5
  2483. sed 's/^/| /' conftest.$ac_ext >&5
  2484.  
  2485. ac_compiler_gnu=no
  2486. fi
  2487. rm -f conftest.$ac_objext conftest.$ac_ext
  2488. ac_cv_c_compiler_gnu=$ac_compiler_gnu
  2489.  
  2490. fi
  2491. echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
  2492. echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
  2493. GCC=`test $ac_compiler_gnu = yes && echo yes`
  2494. ac_test_CFLAGS=${CFLAGS+set}
  2495. ac_save_CFLAGS=$CFLAGS
  2496. CFLAGS="-g"
  2497. echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
  2498. echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
  2499. if test "${ac_cv_prog_cc_g+set}" = set; then
  2500.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2501. else
  2502.   cat >conftest.$ac_ext <<_ACEOF
  2503. #line $LINENO "configure"
  2504. /* confdefs.h.  */
  2505. _ACEOF
  2506. cat confdefs.h >>conftest.$ac_ext
  2507. cat >>conftest.$ac_ext <<_ACEOF
  2508. /* end confdefs.h.  */
  2509.  
  2510. int
  2511. main ()
  2512. {
  2513.  
  2514.   ;
  2515.   return 0;
  2516. }
  2517. _ACEOF
  2518. rm -f conftest.$ac_objext
  2519. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2520.   (eval $ac_compile) 2>&5
  2521.   ac_status=$?
  2522.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2523.   (exit $ac_status); } &&
  2524.          { ac_try='test -s conftest.$ac_objext'
  2525.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2526.   (eval $ac_try) 2>&5
  2527.   ac_status=$?
  2528.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2529.   (exit $ac_status); }; }; then
  2530.   ac_cv_prog_cc_g=yes
  2531. else
  2532.   echo "$as_me: failed program was:" >&5
  2533. sed 's/^/| /' conftest.$ac_ext >&5
  2534.  
  2535. ac_cv_prog_cc_g=no
  2536. fi
  2537. rm -f conftest.$ac_objext conftest.$ac_ext
  2538. fi
  2539. echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
  2540. echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
  2541. if test "$ac_test_CFLAGS" = set; then
  2542.   CFLAGS=$ac_save_CFLAGS
  2543. elif test $ac_cv_prog_cc_g = yes; then
  2544.   if test "$GCC" = yes; then
  2545.     CFLAGS="-g -O2"
  2546.   else
  2547.     CFLAGS="-g"
  2548.   fi
  2549. else
  2550.   if test "$GCC" = yes; then
  2551.     CFLAGS="-O2"
  2552.   else
  2553.     CFLAGS=
  2554.   fi
  2555. fi
  2556. echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
  2557. echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
  2558. if test "${ac_cv_prog_cc_stdc+set}" = set; then
  2559.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2560. else
  2561.   ac_cv_prog_cc_stdc=no
  2562. ac_save_CC=$CC
  2563. cat >conftest.$ac_ext <<_ACEOF
  2564. #line $LINENO "configure"
  2565. /* confdefs.h.  */
  2566. _ACEOF
  2567. cat confdefs.h >>conftest.$ac_ext
  2568. cat >>conftest.$ac_ext <<_ACEOF
  2569. /* end confdefs.h.  */
  2570. #include <stdarg.h>
  2571. #include <stdio.h>
  2572. #include <sys/types.h>
  2573. #include <sys/stat.h>
  2574. /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
  2575. struct buf { int x; };
  2576. FILE * (*rcsopen) (struct buf *, struct stat *, int);
  2577. static char *e (p, i)
  2578.      char **p;
  2579.      int i;
  2580. {
  2581.   return p[i];
  2582. }
  2583. static char *f (char * (*g) (char **, int), char **p, ...)
  2584. {
  2585.   char *s;
  2586.   va_list v;
  2587.   va_start (v,p);
  2588.   s = g (p, va_arg (v,int));
  2589.   va_end (v);
  2590.   return s;
  2591. }
  2592. int test (int i, double x);
  2593. struct s1 {int (*f) (int a);};
  2594. struct s2 {int (*f) (double a);};
  2595. int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
  2596. int argc;
  2597. char **argv;
  2598. int
  2599. main ()
  2600. {
  2601. return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
  2602.   ;
  2603.   return 0;
  2604. }
  2605. _ACEOF
  2606. # Don't try gcc -ansi; that turns off useful extensions and
  2607. # breaks some systems' header files.
  2608. # AIX            -qlanglvl=ansi
  2609. # Ultrix and OSF/1    -std1
  2610. # HP-UX 10.20 and later    -Ae
  2611. # HP-UX older versions    -Aa -D_HPUX_SOURCE
  2612. # SVR4            -Xc -D__EXTENSIONS__
  2613. for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
  2614. do
  2615.   CC="$ac_save_CC $ac_arg"
  2616.   rm -f conftest.$ac_objext
  2617. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2618.   (eval $ac_compile) 2>&5
  2619.   ac_status=$?
  2620.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2621.   (exit $ac_status); } &&
  2622.          { ac_try='test -s conftest.$ac_objext'
  2623.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2624.   (eval $ac_try) 2>&5
  2625.   ac_status=$?
  2626.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2627.   (exit $ac_status); }; }; then
  2628.   ac_cv_prog_cc_stdc=$ac_arg
  2629. break
  2630. else
  2631.   echo "$as_me: failed program was:" >&5
  2632. sed 's/^/| /' conftest.$ac_ext >&5
  2633.  
  2634. fi
  2635. rm -f conftest.$ac_objext
  2636. done
  2637. rm -f conftest.$ac_ext conftest.$ac_objext
  2638. CC=$ac_save_CC
  2639.  
  2640. fi
  2641.  
  2642. case "x$ac_cv_prog_cc_stdc" in
  2643.   x|xno)
  2644.     echo "$as_me:$LINENO: result: none needed" >&5
  2645. echo "${ECHO_T}none needed" >&6 ;;
  2646.   *)
  2647.     echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
  2648. echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
  2649.     CC="$CC $ac_cv_prog_cc_stdc" ;;
  2650. esac
  2651.  
  2652. # Some people use a C++ compiler to compile C.  Since we use `exit',
  2653. # in C++ we need to declare it.  In case someone uses the same compiler
  2654. # for both compiling C and C++ we need to have the C++ compiler decide
  2655. # the declaration of exit, since it's the most demanding environment.
  2656. cat >conftest.$ac_ext <<_ACEOF
  2657. #ifndef __cplusplus
  2658.   choke me
  2659. #endif
  2660. _ACEOF
  2661. rm -f conftest.$ac_objext
  2662. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2663.   (eval $ac_compile) 2>&5
  2664.   ac_status=$?
  2665.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2666.   (exit $ac_status); } &&
  2667.          { ac_try='test -s conftest.$ac_objext'
  2668.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2669.   (eval $ac_try) 2>&5
  2670.   ac_status=$?
  2671.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2672.   (exit $ac_status); }; }; then
  2673.   for ac_declaration in \
  2674.    ''\
  2675.    '#include <stdlib.h>' \
  2676.    'extern "C" void std::exit (int) throw (); using std::exit;' \
  2677.    'extern "C" void std::exit (int); using std::exit;' \
  2678.    'extern "C" void exit (int) throw ();' \
  2679.    'extern "C" void exit (int);' \
  2680.    'void exit (int);'
  2681. do
  2682.   cat >conftest.$ac_ext <<_ACEOF
  2683. #line $LINENO "configure"
  2684. /* confdefs.h.  */
  2685. _ACEOF
  2686. cat confdefs.h >>conftest.$ac_ext
  2687. cat >>conftest.$ac_ext <<_ACEOF
  2688. /* end confdefs.h.  */
  2689. #include <stdlib.h>
  2690. $ac_declaration
  2691. int
  2692. main ()
  2693. {
  2694. exit (42);
  2695.   ;
  2696.   return 0;
  2697. }
  2698. _ACEOF
  2699. rm -f conftest.$ac_objext
  2700. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2701.   (eval $ac_compile) 2>&5
  2702.   ac_status=$?
  2703.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2704.   (exit $ac_status); } &&
  2705.          { ac_try='test -s conftest.$ac_objext'
  2706.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2707.   (eval $ac_try) 2>&5
  2708.   ac_status=$?
  2709.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2710.   (exit $ac_status); }; }; then
  2711.   :
  2712. else
  2713.   echo "$as_me: failed program was:" >&5
  2714. sed 's/^/| /' conftest.$ac_ext >&5
  2715.  
  2716. continue
  2717. fi
  2718. rm -f conftest.$ac_objext conftest.$ac_ext
  2719.   cat >conftest.$ac_ext <<_ACEOF
  2720. #line $LINENO "configure"
  2721. /* confdefs.h.  */
  2722. _ACEOF
  2723. cat confdefs.h >>conftest.$ac_ext
  2724. cat >>conftest.$ac_ext <<_ACEOF
  2725. /* end confdefs.h.  */
  2726. $ac_declaration
  2727. int
  2728. main ()
  2729. {
  2730. exit (42);
  2731.   ;
  2732.   return 0;
  2733. }
  2734. _ACEOF
  2735. rm -f conftest.$ac_objext
  2736. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  2737.   (eval $ac_compile) 2>&5
  2738.   ac_status=$?
  2739.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2740.   (exit $ac_status); } &&
  2741.          { ac_try='test -s conftest.$ac_objext'
  2742.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2743.   (eval $ac_try) 2>&5
  2744.   ac_status=$?
  2745.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2746.   (exit $ac_status); }; }; then
  2747.   break
  2748. else
  2749.   echo "$as_me: failed program was:" >&5
  2750. sed 's/^/| /' conftest.$ac_ext >&5
  2751.  
  2752. fi
  2753. rm -f conftest.$ac_objext conftest.$ac_ext
  2754. done
  2755. rm -f conftest*
  2756. if test -n "$ac_declaration"; then
  2757.   echo '#ifdef __cplusplus' >>confdefs.h
  2758.   echo $ac_declaration      >>confdefs.h
  2759.   echo '#endif'             >>confdefs.h
  2760. fi
  2761.  
  2762. else
  2763.   echo "$as_me: failed program was:" >&5
  2764. sed 's/^/| /' conftest.$ac_ext >&5
  2765.  
  2766. fi
  2767. rm -f conftest.$ac_objext conftest.$ac_ext
  2768. ac_ext=c
  2769. ac_cpp='$CPP $CPPFLAGS'
  2770. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2771. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2772. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2773. rm -f .deps 2>/dev/null
  2774. mkdir .deps 2>/dev/null
  2775. if test -d .deps; then
  2776.   DEPDIR=.deps
  2777. else
  2778.   # MS-DOS does not allow filenames that begin with a dot.
  2779.   DEPDIR=_deps
  2780. fi
  2781. rmdir .deps 2>/dev/null
  2782.  
  2783.  
  2784.           ac_config_commands="$ac_config_commands depfiles"
  2785.  
  2786.  
  2787. am_make=${MAKE-make}
  2788. cat > confinc << 'END'
  2789. doit:
  2790.     @echo done
  2791. END
  2792. # If we don't find an include directive, just comment out the code.
  2793. echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
  2794. echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
  2795. am__include="#"
  2796. am__quote=
  2797. _am_result=none
  2798. # First try GNU make style include.
  2799. echo "include confinc" > confmf
  2800. # We grep out `Entering directory' and `Leaving directory'
  2801. # messages which can occur if `w' ends up in MAKEFLAGS.
  2802. # In particular we don't look at `^make:' because GNU make might
  2803. # be invoked under some other name (usually "gmake"), in which
  2804. # case it prints its new name instead of `make'.
  2805. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
  2806.    am__include=include
  2807.    am__quote=
  2808.    _am_result=GNU
  2809. fi
  2810. # Now try BSD make style include.
  2811. if test "$am__include" = "#"; then
  2812.    echo '.include "confinc"' > confmf
  2813.    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
  2814.       am__include=.include
  2815.       am__quote="\""
  2816.       _am_result=BSD
  2817.    fi
  2818. fi
  2819.  
  2820.  
  2821. echo "$as_me:$LINENO: result: $_am_result" >&5
  2822. echo "${ECHO_T}$_am_result" >&6
  2823. rm -f confinc confmf
  2824.  
  2825. # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
  2826. if test "${enable_dependency_tracking+set}" = set; then
  2827.   enableval="$enable_dependency_tracking"
  2828.  
  2829. fi;
  2830. if test "x$enable_dependency_tracking" != xno; then
  2831.   am_depcomp="$ac_aux_dir/depcomp"
  2832.   AMDEPBACKSLASH='\'
  2833. fi
  2834.  
  2835.  
  2836. if test "x$enable_dependency_tracking" != xno; then
  2837.   AMDEP_TRUE=
  2838.   AMDEP_FALSE='#'
  2839. else
  2840.   AMDEP_TRUE='#'
  2841.   AMDEP_FALSE=
  2842. fi
  2843.  
  2844.  
  2845.  
  2846.  
  2847. depcc="$CC"   am_compiler_list=
  2848.  
  2849. echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
  2850. echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
  2851. if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
  2852.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2853. else
  2854.   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  2855.   # We make a subdir and do the tests there.  Otherwise we can end up
  2856.   # making bogus files that we don't know about and never remove.  For
  2857.   # instance it was reported that on HP-UX the gcc test will end up
  2858.   # making a dummy file named `D' -- because `-MD' means `put the output
  2859.   # in D'.
  2860.   mkdir conftest.dir
  2861.   # Copy depcomp to subdir because otherwise we won't find it if we're
  2862.   # using a relative directory.
  2863.   cp "$am_depcomp" conftest.dir
  2864.   cd conftest.dir
  2865.  
  2866.   am_cv_CC_dependencies_compiler_type=none
  2867.   if test "$am_compiler_list" = ""; then
  2868.      am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
  2869.   fi
  2870.   for depmode in $am_compiler_list; do
  2871.     # We need to recreate these files for each test, as the compiler may
  2872.     # overwrite some of them when testing with obscure command lines.
  2873.     # This happens at least with the AIX C compiler.
  2874.     echo '#include "conftest.h"' > conftest.c
  2875.     echo 'int i;' > conftest.h
  2876.     echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
  2877.  
  2878.     case $depmode in
  2879.     nosideeffect)
  2880.       # after this tag, mechanisms are not by side-effect, so they'll
  2881.       # only be used when explicitly requested
  2882.       if test "x$enable_dependency_tracking" = xyes; then
  2883.     continue
  2884.       else
  2885.     break
  2886.       fi
  2887.       ;;
  2888.     none) break ;;
  2889.     esac
  2890.     # We check with `-c' and `-o' for the sake of the "dashmstdout"
  2891.     # mode.  It turns out that the SunPro C++ compiler does not properly
  2892.     # handle `-M -o', and we need to detect this.
  2893.     if depmode=$depmode \
  2894.        source=conftest.c object=conftest.o \
  2895.        depfile=conftest.Po tmpdepfile=conftest.TPo \
  2896.        $SHELL ./depcomp $depcc -c -o conftest.o conftest.c >/dev/null 2>&1 &&
  2897.        grep conftest.h conftest.Po > /dev/null 2>&1 &&
  2898.        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  2899.       am_cv_CC_dependencies_compiler_type=$depmode
  2900.       break
  2901.     fi
  2902.   done
  2903.  
  2904.   cd ..
  2905.   rm -rf conftest.dir
  2906. else
  2907.   am_cv_CC_dependencies_compiler_type=none
  2908. fi
  2909.  
  2910. fi
  2911. echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
  2912. echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
  2913. CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
  2914.  
  2915.  
  2916.  
  2917. if
  2918.   test "x$enable_dependency_tracking" != xno \
  2919.   && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
  2920.   am__fastdepCC_TRUE=
  2921.   am__fastdepCC_FALSE='#'
  2922. else
  2923.   am__fastdepCC_TRUE='#'
  2924.   am__fastdepCC_FALSE=
  2925. fi
  2926.  
  2927.  
  2928. if test "x$CC" != xcc; then
  2929.   echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5
  2930. echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6
  2931. else
  2932.   echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5
  2933. echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6
  2934. fi
  2935. set dummy $CC; ac_cc=`echo $2 |
  2936.               sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
  2937. if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\" = set"; then
  2938.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2939. else
  2940.   cat >conftest.$ac_ext <<_ACEOF
  2941. #line $LINENO "configure"
  2942. /* confdefs.h.  */
  2943. _ACEOF
  2944. cat confdefs.h >>conftest.$ac_ext
  2945. cat >>conftest.$ac_ext <<_ACEOF
  2946. /* end confdefs.h.  */
  2947.  
  2948. int
  2949. main ()
  2950. {
  2951.  
  2952.   ;
  2953.   return 0;
  2954. }
  2955. _ACEOF
  2956. # Make sure it works both with $CC and with simple cc.
  2957. # We do the test twice because some compilers refuse to overwrite an
  2958. # existing .o file with -o, though they will create one.
  2959. ac_try='$CC -c conftest.$ac_ext -o conftest.$ac_objext >&5'
  2960. if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2961.   (eval $ac_try) 2>&5
  2962.   ac_status=$?
  2963.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2964.   (exit $ac_status); } &&
  2965.    test -f conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2966.   (eval $ac_try) 2>&5
  2967.   ac_status=$?
  2968.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2969.   (exit $ac_status); };
  2970. then
  2971.   eval ac_cv_prog_cc_${ac_cc}_c_o=yes
  2972.   if test "x$CC" != xcc; then
  2973.     # Test first that cc exists at all.
  2974.     if { ac_try='cc -c conftest.$ac_ext >&5'
  2975.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2976.   (eval $ac_try) 2>&5
  2977.   ac_status=$?
  2978.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2979.   (exit $ac_status); }; }; then
  2980.       ac_try='cc -c conftest.$ac_ext -o conftest.$ac_objext >&5'
  2981.       if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2982.   (eval $ac_try) 2>&5
  2983.   ac_status=$?
  2984.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2985.   (exit $ac_status); } &&
  2986.      test -f conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  2987.   (eval $ac_try) 2>&5
  2988.   ac_status=$?
  2989.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2990.   (exit $ac_status); };
  2991.       then
  2992.         # cc works too.
  2993.         :
  2994.       else
  2995.         # cc exists but doesn't like -o.
  2996.         eval ac_cv_prog_cc_${ac_cc}_c_o=no
  2997.       fi
  2998.     fi
  2999.   fi
  3000. else
  3001.   eval ac_cv_prog_cc_${ac_cc}_c_o=no
  3002. fi
  3003. rm -f conftest*
  3004.  
  3005. fi
  3006. if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = yes"; then
  3007.   echo "$as_me:$LINENO: result: yes" >&5
  3008. echo "${ECHO_T}yes" >&6
  3009. else
  3010.   echo "$as_me:$LINENO: result: no" >&5
  3011. echo "${ECHO_T}no" >&6
  3012.  
  3013. cat >>confdefs.h <<\_ACEOF
  3014. #define NO_MINUS_C_MINUS_O 1
  3015. _ACEOF
  3016.  
  3017. fi
  3018.  
  3019. # FIXME: we rely on the cache variable name because
  3020. # there is no other way.
  3021. set dummy $CC
  3022. ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
  3023. if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
  3024.    # Losing compiler, so override with the script.
  3025.    # FIXME: It is wrong to rewrite CC.
  3026.    # But if we don't then we get into trouble of one sort or another.
  3027.    # A longer-term fix would be to have automake use am__CC in this case,
  3028.    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  3029.    CC="$am_aux_dir/compile $CC"
  3030. fi
  3031.  
  3032. ac_ext=c
  3033. ac_cpp='$CPP $CPPFLAGS'
  3034. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3035. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3036. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  3037. echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
  3038. echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
  3039. # On Suns, sometimes $CPP names a directory.
  3040. if test -n "$CPP" && test -d "$CPP"; then
  3041.   CPP=
  3042. fi
  3043. if test -z "$CPP"; then
  3044.   if test "${ac_cv_prog_CPP+set}" = set; then
  3045.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3046. else
  3047.       # Double quotes because CPP needs to be expanded
  3048.     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
  3049.     do
  3050.       ac_preproc_ok=false
  3051. for ac_c_preproc_warn_flag in '' yes
  3052. do
  3053.   # Use a header file that comes with gcc, so configuring glibc
  3054.   # with a fresh cross-compiler works.
  3055.   # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  3056.   # <limits.h> exists even on freestanding compilers.
  3057.   # On the NeXT, cc -E runs the code through the compiler's parser,
  3058.   # not just through cpp. "Syntax error" is here to catch this case.
  3059.   cat >conftest.$ac_ext <<_ACEOF
  3060. #line $LINENO "configure"
  3061. /* confdefs.h.  */
  3062. _ACEOF
  3063. cat confdefs.h >>conftest.$ac_ext
  3064. cat >>conftest.$ac_ext <<_ACEOF
  3065. /* end confdefs.h.  */
  3066. #ifdef __STDC__
  3067. # include <limits.h>
  3068. #else
  3069. # include <assert.h>
  3070. #endif
  3071.                      Syntax error
  3072. _ACEOF
  3073. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  3074.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3075.   ac_status=$?
  3076.   grep -v '^ *+' conftest.er1 >conftest.err
  3077.   rm -f conftest.er1
  3078.   cat conftest.err >&5
  3079.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3080.   (exit $ac_status); } >/dev/null; then
  3081.   if test -s conftest.err; then
  3082.     ac_cpp_err=$ac_c_preproc_warn_flag
  3083.   else
  3084.     ac_cpp_err=
  3085.   fi
  3086. else
  3087.   ac_cpp_err=yes
  3088. fi
  3089. if test -z "$ac_cpp_err"; then
  3090.   :
  3091. else
  3092.   echo "$as_me: failed program was:" >&5
  3093. sed 's/^/| /' conftest.$ac_ext >&5
  3094.  
  3095.   # Broken: fails on valid input.
  3096. continue
  3097. fi
  3098. rm -f conftest.err conftest.$ac_ext
  3099.  
  3100.   # OK, works on sane cases.  Now check whether non-existent headers
  3101.   # can be detected and how.
  3102.   cat >conftest.$ac_ext <<_ACEOF
  3103. #line $LINENO "configure"
  3104. /* confdefs.h.  */
  3105. _ACEOF
  3106. cat confdefs.h >>conftest.$ac_ext
  3107. cat >>conftest.$ac_ext <<_ACEOF
  3108. /* end confdefs.h.  */
  3109. #include <ac_nonexistent.h>
  3110. _ACEOF
  3111. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  3112.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3113.   ac_status=$?
  3114.   grep -v '^ *+' conftest.er1 >conftest.err
  3115.   rm -f conftest.er1
  3116.   cat conftest.err >&5
  3117.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3118.   (exit $ac_status); } >/dev/null; then
  3119.   if test -s conftest.err; then
  3120.     ac_cpp_err=$ac_c_preproc_warn_flag
  3121.   else
  3122.     ac_cpp_err=
  3123.   fi
  3124. else
  3125.   ac_cpp_err=yes
  3126. fi
  3127. if test -z "$ac_cpp_err"; then
  3128.   # Broken: success on invalid input.
  3129. continue
  3130. else
  3131.   echo "$as_me: failed program was:" >&5
  3132. sed 's/^/| /' conftest.$ac_ext >&5
  3133.  
  3134.   # Passes both tests.
  3135. ac_preproc_ok=:
  3136. break
  3137. fi
  3138. rm -f conftest.err conftest.$ac_ext
  3139.  
  3140. done
  3141. # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  3142. rm -f conftest.err conftest.$ac_ext
  3143. if $ac_preproc_ok; then
  3144.   break
  3145. fi
  3146.  
  3147.     done
  3148.     ac_cv_prog_CPP=$CPP
  3149.  
  3150. fi
  3151.   CPP=$ac_cv_prog_CPP
  3152. else
  3153.   ac_cv_prog_CPP=$CPP
  3154. fi
  3155. echo "$as_me:$LINENO: result: $CPP" >&5
  3156. echo "${ECHO_T}$CPP" >&6
  3157. ac_preproc_ok=false
  3158. for ac_c_preproc_warn_flag in '' yes
  3159. do
  3160.   # Use a header file that comes with gcc, so configuring glibc
  3161.   # with a fresh cross-compiler works.
  3162.   # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  3163.   # <limits.h> exists even on freestanding compilers.
  3164.   # On the NeXT, cc -E runs the code through the compiler's parser,
  3165.   # not just through cpp. "Syntax error" is here to catch this case.
  3166.   cat >conftest.$ac_ext <<_ACEOF
  3167. #line $LINENO "configure"
  3168. /* confdefs.h.  */
  3169. _ACEOF
  3170. cat confdefs.h >>conftest.$ac_ext
  3171. cat >>conftest.$ac_ext <<_ACEOF
  3172. /* end confdefs.h.  */
  3173. #ifdef __STDC__
  3174. # include <limits.h>
  3175. #else
  3176. # include <assert.h>
  3177. #endif
  3178.                      Syntax error
  3179. _ACEOF
  3180. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  3181.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3182.   ac_status=$?
  3183.   grep -v '^ *+' conftest.er1 >conftest.err
  3184.   rm -f conftest.er1
  3185.   cat conftest.err >&5
  3186.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3187.   (exit $ac_status); } >/dev/null; then
  3188.   if test -s conftest.err; then
  3189.     ac_cpp_err=$ac_c_preproc_warn_flag
  3190.   else
  3191.     ac_cpp_err=
  3192.   fi
  3193. else
  3194.   ac_cpp_err=yes
  3195. fi
  3196. if test -z "$ac_cpp_err"; then
  3197.   :
  3198. else
  3199.   echo "$as_me: failed program was:" >&5
  3200. sed 's/^/| /' conftest.$ac_ext >&5
  3201.  
  3202.   # Broken: fails on valid input.
  3203. continue
  3204. fi
  3205. rm -f conftest.err conftest.$ac_ext
  3206.  
  3207.   # OK, works on sane cases.  Now check whether non-existent headers
  3208.   # can be detected and how.
  3209.   cat >conftest.$ac_ext <<_ACEOF
  3210. #line $LINENO "configure"
  3211. /* confdefs.h.  */
  3212. _ACEOF
  3213. cat confdefs.h >>conftest.$ac_ext
  3214. cat >>conftest.$ac_ext <<_ACEOF
  3215. /* end confdefs.h.  */
  3216. #include <ac_nonexistent.h>
  3217. _ACEOF
  3218. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  3219.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3220.   ac_status=$?
  3221.   grep -v '^ *+' conftest.er1 >conftest.err
  3222.   rm -f conftest.er1
  3223.   cat conftest.err >&5
  3224.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3225.   (exit $ac_status); } >/dev/null; then
  3226.   if test -s conftest.err; then
  3227.     ac_cpp_err=$ac_c_preproc_warn_flag
  3228.   else
  3229.     ac_cpp_err=
  3230.   fi
  3231. else
  3232.   ac_cpp_err=yes
  3233. fi
  3234. if test -z "$ac_cpp_err"; then
  3235.   # Broken: success on invalid input.
  3236. continue
  3237. else
  3238.   echo "$as_me: failed program was:" >&5
  3239. sed 's/^/| /' conftest.$ac_ext >&5
  3240.  
  3241.   # Passes both tests.
  3242. ac_preproc_ok=:
  3243. break
  3244. fi
  3245. rm -f conftest.err conftest.$ac_ext
  3246.  
  3247. done
  3248. # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  3249. rm -f conftest.err conftest.$ac_ext
  3250. if $ac_preproc_ok; then
  3251.   :
  3252. else
  3253.   { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
  3254. See \`config.log' for more details." >&5
  3255. echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
  3256. See \`config.log' for more details." >&2;}
  3257.    { (exit 1); exit 1; }; }
  3258. fi
  3259.  
  3260. ac_ext=c
  3261. ac_cpp='$CPP $CPPFLAGS'
  3262. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3263. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3264. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  3265.  
  3266. ac_ext=cc
  3267. ac_cpp='$CXXCPP $CPPFLAGS'
  3268. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3269. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3270. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  3271. if test -n "$ac_tool_prefix"; then
  3272.   for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
  3273.   do
  3274.     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
  3275. set dummy $ac_tool_prefix$ac_prog; ac_word=$2
  3276. echo "$as_me:$LINENO: checking for $ac_word" >&5
  3277. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  3278. if test "${ac_cv_prog_CXX+set}" = set; then
  3279.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3280. else
  3281.   if test -n "$CXX"; then
  3282.   ac_cv_prog_CXX="$CXX" # Let the user override the test.
  3283. else
  3284. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3285. for as_dir in $PATH
  3286. do
  3287.   IFS=$as_save_IFS
  3288.   test -z "$as_dir" && as_dir=.
  3289.   for ac_exec_ext in '' $ac_executable_extensions; do
  3290.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3291.     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
  3292.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  3293.     break 2
  3294.   fi
  3295. done
  3296. done
  3297.  
  3298. fi
  3299. fi
  3300. CXX=$ac_cv_prog_CXX
  3301. if test -n "$CXX"; then
  3302.   echo "$as_me:$LINENO: result: $CXX" >&5
  3303. echo "${ECHO_T}$CXX" >&6
  3304. else
  3305.   echo "$as_me:$LINENO: result: no" >&5
  3306. echo "${ECHO_T}no" >&6
  3307. fi
  3308.  
  3309.     test -n "$CXX" && break
  3310.   done
  3311. fi
  3312. if test -z "$CXX"; then
  3313.   ac_ct_CXX=$CXX
  3314.   for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
  3315. do
  3316.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  3317. set dummy $ac_prog; ac_word=$2
  3318. echo "$as_me:$LINENO: checking for $ac_word" >&5
  3319. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  3320. if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
  3321.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3322. else
  3323.   if test -n "$ac_ct_CXX"; then
  3324.   ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
  3325. else
  3326. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3327. for as_dir in $PATH
  3328. do
  3329.   IFS=$as_save_IFS
  3330.   test -z "$as_dir" && as_dir=.
  3331.   for ac_exec_ext in '' $ac_executable_extensions; do
  3332.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3333.     ac_cv_prog_ac_ct_CXX="$ac_prog"
  3334.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  3335.     break 2
  3336.   fi
  3337. done
  3338. done
  3339.  
  3340. fi
  3341. fi
  3342. ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
  3343. if test -n "$ac_ct_CXX"; then
  3344.   echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
  3345. echo "${ECHO_T}$ac_ct_CXX" >&6
  3346. else
  3347.   echo "$as_me:$LINENO: result: no" >&5
  3348. echo "${ECHO_T}no" >&6
  3349. fi
  3350.  
  3351.   test -n "$ac_ct_CXX" && break
  3352. done
  3353. test -n "$ac_ct_CXX" || ac_ct_CXX="g++"
  3354.  
  3355.   CXX=$ac_ct_CXX
  3356. fi
  3357.  
  3358.  
  3359. # Provide some information about the compiler.
  3360. echo "$as_me:$LINENO:" \
  3361.      "checking for C++ compiler version" >&5
  3362. ac_compiler=`set X $ac_compile; echo $2`
  3363. { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
  3364.   (eval $ac_compiler --version </dev/null >&5) 2>&5
  3365.   ac_status=$?
  3366.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3367.   (exit $ac_status); }
  3368. { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
  3369.   (eval $ac_compiler -v </dev/null >&5) 2>&5
  3370.   ac_status=$?
  3371.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3372.   (exit $ac_status); }
  3373. { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
  3374.   (eval $ac_compiler -V </dev/null >&5) 2>&5
  3375.   ac_status=$?
  3376.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3377.   (exit $ac_status); }
  3378.  
  3379. echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
  3380. echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
  3381. if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
  3382.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3383. else
  3384.   cat >conftest.$ac_ext <<_ACEOF
  3385. #line $LINENO "configure"
  3386. /* confdefs.h.  */
  3387. _ACEOF
  3388. cat confdefs.h >>conftest.$ac_ext
  3389. cat >>conftest.$ac_ext <<_ACEOF
  3390. /* end confdefs.h.  */
  3391.  
  3392. int
  3393. main ()
  3394. {
  3395. #ifndef __GNUC__
  3396.        choke me
  3397. #endif
  3398.  
  3399.   ;
  3400.   return 0;
  3401. }
  3402. _ACEOF
  3403. rm -f conftest.$ac_objext
  3404. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  3405.   (eval $ac_compile) 2>&5
  3406.   ac_status=$?
  3407.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3408.   (exit $ac_status); } &&
  3409.          { ac_try='test -s conftest.$ac_objext'
  3410.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  3411.   (eval $ac_try) 2>&5
  3412.   ac_status=$?
  3413.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3414.   (exit $ac_status); }; }; then
  3415.   ac_compiler_gnu=yes
  3416. else
  3417.   echo "$as_me: failed program was:" >&5
  3418. sed 's/^/| /' conftest.$ac_ext >&5
  3419.  
  3420. ac_compiler_gnu=no
  3421. fi
  3422. rm -f conftest.$ac_objext conftest.$ac_ext
  3423. ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
  3424.  
  3425. fi
  3426. echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
  3427. echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
  3428. GXX=`test $ac_compiler_gnu = yes && echo yes`
  3429. ac_test_CXXFLAGS=${CXXFLAGS+set}
  3430. ac_save_CXXFLAGS=$CXXFLAGS
  3431. CXXFLAGS="-g"
  3432. echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
  3433. echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
  3434. if test "${ac_cv_prog_cxx_g+set}" = set; then
  3435.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3436. else
  3437.   cat >conftest.$ac_ext <<_ACEOF
  3438. #line $LINENO "configure"
  3439. /* confdefs.h.  */
  3440. _ACEOF
  3441. cat confdefs.h >>conftest.$ac_ext
  3442. cat >>conftest.$ac_ext <<_ACEOF
  3443. /* end confdefs.h.  */
  3444.  
  3445. int
  3446. main ()
  3447. {
  3448.  
  3449.   ;
  3450.   return 0;
  3451. }
  3452. _ACEOF
  3453. rm -f conftest.$ac_objext
  3454. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  3455.   (eval $ac_compile) 2>&5
  3456.   ac_status=$?
  3457.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3458.   (exit $ac_status); } &&
  3459.          { ac_try='test -s conftest.$ac_objext'
  3460.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  3461.   (eval $ac_try) 2>&5
  3462.   ac_status=$?
  3463.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3464.   (exit $ac_status); }; }; then
  3465.   ac_cv_prog_cxx_g=yes
  3466. else
  3467.   echo "$as_me: failed program was:" >&5
  3468. sed 's/^/| /' conftest.$ac_ext >&5
  3469.  
  3470. ac_cv_prog_cxx_g=no
  3471. fi
  3472. rm -f conftest.$ac_objext conftest.$ac_ext
  3473. fi
  3474. echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
  3475. echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
  3476. if test "$ac_test_CXXFLAGS" = set; then
  3477.   CXXFLAGS=$ac_save_CXXFLAGS
  3478. elif test $ac_cv_prog_cxx_g = yes; then
  3479.   if test "$GXX" = yes; then
  3480.     CXXFLAGS="-g -O2"
  3481.   else
  3482.     CXXFLAGS="-g"
  3483.   fi
  3484. else
  3485.   if test "$GXX" = yes; then
  3486.     CXXFLAGS="-O2"
  3487.   else
  3488.     CXXFLAGS=
  3489.   fi
  3490. fi
  3491. for ac_declaration in \
  3492.    ''\
  3493.    '#include <stdlib.h>' \
  3494.    'extern "C" void std::exit (int) throw (); using std::exit;' \
  3495.    'extern "C" void std::exit (int); using std::exit;' \
  3496.    'extern "C" void exit (int) throw ();' \
  3497.    'extern "C" void exit (int);' \
  3498.    'void exit (int);'
  3499. do
  3500.   cat >conftest.$ac_ext <<_ACEOF
  3501. #line $LINENO "configure"
  3502. /* confdefs.h.  */
  3503. _ACEOF
  3504. cat confdefs.h >>conftest.$ac_ext
  3505. cat >>conftest.$ac_ext <<_ACEOF
  3506. /* end confdefs.h.  */
  3507. #include <stdlib.h>
  3508. $ac_declaration
  3509. int
  3510. main ()
  3511. {
  3512. exit (42);
  3513.   ;
  3514.   return 0;
  3515. }
  3516. _ACEOF
  3517. rm -f conftest.$ac_objext
  3518. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  3519.   (eval $ac_compile) 2>&5
  3520.   ac_status=$?
  3521.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3522.   (exit $ac_status); } &&
  3523.          { ac_try='test -s conftest.$ac_objext'
  3524.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  3525.   (eval $ac_try) 2>&5
  3526.   ac_status=$?
  3527.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3528.   (exit $ac_status); }; }; then
  3529.   :
  3530. else
  3531.   echo "$as_me: failed program was:" >&5
  3532. sed 's/^/| /' conftest.$ac_ext >&5
  3533.  
  3534. continue
  3535. fi
  3536. rm -f conftest.$ac_objext conftest.$ac_ext
  3537.   cat >conftest.$ac_ext <<_ACEOF
  3538. #line $LINENO "configure"
  3539. /* confdefs.h.  */
  3540. _ACEOF
  3541. cat confdefs.h >>conftest.$ac_ext
  3542. cat >>conftest.$ac_ext <<_ACEOF
  3543. /* end confdefs.h.  */
  3544. $ac_declaration
  3545. int
  3546. main ()
  3547. {
  3548. exit (42);
  3549.   ;
  3550.   return 0;
  3551. }
  3552. _ACEOF
  3553. rm -f conftest.$ac_objext
  3554. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  3555.   (eval $ac_compile) 2>&5
  3556.   ac_status=$?
  3557.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3558.   (exit $ac_status); } &&
  3559.          { ac_try='test -s conftest.$ac_objext'
  3560.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  3561.   (eval $ac_try) 2>&5
  3562.   ac_status=$?
  3563.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3564.   (exit $ac_status); }; }; then
  3565.   break
  3566. else
  3567.   echo "$as_me: failed program was:" >&5
  3568. sed 's/^/| /' conftest.$ac_ext >&5
  3569.  
  3570. fi
  3571. rm -f conftest.$ac_objext conftest.$ac_ext
  3572. done
  3573. rm -f conftest*
  3574. if test -n "$ac_declaration"; then
  3575.   echo '#ifdef __cplusplus' >>confdefs.h
  3576.   echo $ac_declaration      >>confdefs.h
  3577.   echo '#endif'             >>confdefs.h
  3578. fi
  3579.  
  3580. ac_ext=c
  3581. ac_cpp='$CPP $CPPFLAGS'
  3582. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3583. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3584. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  3585.  
  3586. depcc="$CXX"  am_compiler_list=
  3587.  
  3588. echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
  3589. echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
  3590. if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then
  3591.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3592. else
  3593.   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  3594.   # We make a subdir and do the tests there.  Otherwise we can end up
  3595.   # making bogus files that we don't know about and never remove.  For
  3596.   # instance it was reported that on HP-UX the gcc test will end up
  3597.   # making a dummy file named `D' -- because `-MD' means `put the output
  3598.   # in D'.
  3599.   mkdir conftest.dir
  3600.   # Copy depcomp to subdir because otherwise we won't find it if we're
  3601.   # using a relative directory.
  3602.   cp "$am_depcomp" conftest.dir
  3603.   cd conftest.dir
  3604.  
  3605.   am_cv_CXX_dependencies_compiler_type=none
  3606.   if test "$am_compiler_list" = ""; then
  3607.      am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
  3608.   fi
  3609.   for depmode in $am_compiler_list; do
  3610.     # We need to recreate these files for each test, as the compiler may
  3611.     # overwrite some of them when testing with obscure command lines.
  3612.     # This happens at least with the AIX C compiler.
  3613.     echo '#include "conftest.h"' > conftest.c
  3614.     echo 'int i;' > conftest.h
  3615.     echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
  3616.  
  3617.     case $depmode in
  3618.     nosideeffect)
  3619.       # after this tag, mechanisms are not by side-effect, so they'll
  3620.       # only be used when explicitly requested
  3621.       if test "x$enable_dependency_tracking" = xyes; then
  3622.     continue
  3623.       else
  3624.     break
  3625.       fi
  3626.       ;;
  3627.     none) break ;;
  3628.     esac
  3629.     # We check with `-c' and `-o' for the sake of the "dashmstdout"
  3630.     # mode.  It turns out that the SunPro C++ compiler does not properly
  3631.     # handle `-M -o', and we need to detect this.
  3632.     if depmode=$depmode \
  3633.        source=conftest.c object=conftest.o \
  3634.        depfile=conftest.Po tmpdepfile=conftest.TPo \
  3635.        $SHELL ./depcomp $depcc -c -o conftest.o conftest.c >/dev/null 2>&1 &&
  3636.        grep conftest.h conftest.Po > /dev/null 2>&1 &&
  3637.        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  3638.       am_cv_CXX_dependencies_compiler_type=$depmode
  3639.       break
  3640.     fi
  3641.   done
  3642.  
  3643.   cd ..
  3644.   rm -rf conftest.dir
  3645. else
  3646.   am_cv_CXX_dependencies_compiler_type=none
  3647. fi
  3648.  
  3649. fi
  3650. echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5
  3651. echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6
  3652. CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
  3653.  
  3654.  
  3655.  
  3656. if
  3657.   test "x$enable_dependency_tracking" != xno \
  3658.   && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
  3659.   am__fastdepCXX_TRUE=
  3660.   am__fastdepCXX_FALSE='#'
  3661. else
  3662.   am__fastdepCXX_TRUE='#'
  3663.   am__fastdepCXX_FALSE=
  3664. fi
  3665.  
  3666.  
  3667. echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
  3668. echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
  3669. set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
  3670. if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
  3671.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3672. else
  3673.   cat >conftest.make <<\_ACEOF
  3674. all:
  3675.     @echo 'ac_maketemp="$(MAKE)"'
  3676. _ACEOF
  3677. # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  3678. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
  3679. if test -n "$ac_maketemp"; then
  3680.   eval ac_cv_prog_make_${ac_make}_set=yes
  3681. else
  3682.   eval ac_cv_prog_make_${ac_make}_set=no
  3683. fi
  3684. rm -f conftest.make
  3685. fi
  3686. if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  3687.   echo "$as_me:$LINENO: result: yes" >&5
  3688. echo "${ECHO_T}yes" >&6
  3689.   SET_MAKE=
  3690. else
  3691.   echo "$as_me:$LINENO: result: no" >&5
  3692. echo "${ECHO_T}no" >&6
  3693.   SET_MAKE="MAKE=${MAKE-make}"
  3694. fi
  3695.  
  3696. # Find a good install program.  We prefer a C program (faster),
  3697. # so one script is as good as another.  But avoid the broken or
  3698. # incompatible versions:
  3699. # SysV /etc/install, /usr/sbin/install
  3700. # SunOS /usr/etc/install
  3701. # IRIX /sbin/install
  3702. # AIX /bin/install
  3703. # AmigaOS /C/install, which installs bootblocks on floppy discs
  3704. # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
  3705. # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  3706. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  3707. # ./install, which can be erroneously created by make from ./install.sh.
  3708. echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
  3709. echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
  3710. if test -z "$INSTALL"; then
  3711. if test "${ac_cv_path_install+set}" = set; then
  3712.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3713. else
  3714.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3715. for as_dir in $PATH
  3716. do
  3717.   IFS=$as_save_IFS
  3718.   test -z "$as_dir" && as_dir=.
  3719.   # Account for people who put trailing slashes in PATH elements.
  3720. case $as_dir/ in
  3721.   ./ | .// | /cC/* | \
  3722.   /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
  3723.   /usr/ucb/* ) ;;
  3724.   *)
  3725.     # OSF1 and SCO ODT 3.0 have their own names for install.
  3726.     # Don't use installbsd from OSF since it installs stuff as root
  3727.     # by default.
  3728.     for ac_prog in ginstall scoinst install; do
  3729.       for ac_exec_ext in '' $ac_executable_extensions; do
  3730.         if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
  3731.           if test $ac_prog = install &&
  3732.             grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  3733.             # AIX install.  It has an incompatible calling convention.
  3734.             :
  3735.           elif test $ac_prog = install &&
  3736.             grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  3737.             # program-specific install script used by HP pwplus--don't use.
  3738.             :
  3739.           else
  3740.             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
  3741.             break 3
  3742.           fi
  3743.         fi
  3744.       done
  3745.     done
  3746.     ;;
  3747. esac
  3748. done
  3749.  
  3750.  
  3751. fi
  3752.   if test "${ac_cv_path_install+set}" = set; then
  3753.     INSTALL=$ac_cv_path_install
  3754.   else
  3755.     # As a last resort, use the slow shell script.  We don't cache a
  3756.     # path for INSTALL within a source directory, because that will
  3757.     # break other packages using the cache if that directory is
  3758.     # removed, or if the path is relative.
  3759.     INSTALL=$ac_install_sh
  3760.   fi
  3761. fi
  3762. echo "$as_me:$LINENO: result: $INSTALL" >&5
  3763. echo "${ECHO_T}$INSTALL" >&6
  3764.  
  3765. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  3766. # It thinks the first close brace ends the variable substitution.
  3767. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  3768.  
  3769. test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  3770.  
  3771. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  3772.  
  3773.  
  3774.  
  3775.  
  3776. echo "$as_me:$LINENO: checking for egrep" >&5
  3777. echo $ECHO_N "checking for egrep... $ECHO_C" >&6
  3778. if test "${ac_cv_prog_egrep+set}" = set; then
  3779.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3780. else
  3781.   if echo a | (grep -E '(a|b)') >/dev/null 2>&1
  3782.     then ac_cv_prog_egrep='grep -E'
  3783.     else ac_cv_prog_egrep='egrep'
  3784.     fi
  3785. fi
  3786. echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
  3787. echo "${ECHO_T}$ac_cv_prog_egrep" >&6
  3788.  EGREP=$ac_cv_prog_egrep
  3789.  
  3790.  
  3791. cat >conftest.$ac_ext <<_ACEOF
  3792. #line $LINENO "configure"
  3793. /* confdefs.h.  */
  3794. _ACEOF
  3795. cat confdefs.h >>conftest.$ac_ext
  3796. cat >>conftest.$ac_ext <<_ACEOF
  3797. /* end confdefs.h.  */
  3798. foo
  3799. _ACEOF
  3800. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  3801.   $EGREP "foo" >/dev/null 2>&1; then
  3802.   :
  3803. fi
  3804. rm -f conftest*
  3805.  
  3806.  
  3807. echo "$as_me:$LINENO: checking for an Objective-C compiler" >&5
  3808. echo $ECHO_N "checking for an Objective-C compiler... $ECHO_C" >&6
  3809. OBJC="${CXX}"
  3810.  
  3811. OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString"
  3812.  
  3813. #OBJCDEPMODE="depmode=gcc3"
  3814. #AC_SUBST(OBJCDEPMODE)
  3815.  
  3816. depcc="$OBJC" am_compiler_list='gcc3 gcc'
  3817.  
  3818. echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
  3819. echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
  3820. if test "${am_cv_OBJC_dependencies_compiler_type+set}" = set; then
  3821.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3822. else
  3823.   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  3824.   # We make a subdir and do the tests there.  Otherwise we can end up
  3825.   # making bogus files that we don't know about and never remove.  For
  3826.   # instance it was reported that on HP-UX the gcc test will end up
  3827.   # making a dummy file named `D' -- because `-MD' means `put the output
  3828.   # in D'.
  3829.   mkdir conftest.dir
  3830.   # Copy depcomp to subdir because otherwise we won't find it if we're
  3831.   # using a relative directory.
  3832.   cp "$am_depcomp" conftest.dir
  3833.   cd conftest.dir
  3834.  
  3835.   am_cv_OBJC_dependencies_compiler_type=none
  3836.   if test "$am_compiler_list" = ""; then
  3837.      am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
  3838.   fi
  3839.   for depmode in $am_compiler_list; do
  3840.     # We need to recreate these files for each test, as the compiler may
  3841.     # overwrite some of them when testing with obscure command lines.
  3842.     # This happens at least with the AIX C compiler.
  3843.     echo '#include "conftest.h"' > conftest.c
  3844.     echo 'int i;' > conftest.h
  3845.     echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
  3846.  
  3847.     case $depmode in
  3848.     nosideeffect)
  3849.       # after this tag, mechanisms are not by side-effect, so they'll
  3850.       # only be used when explicitly requested
  3851.       if test "x$enable_dependency_tracking" = xyes; then
  3852.     continue
  3853.       else
  3854.     break
  3855.       fi
  3856.       ;;
  3857.     none) break ;;
  3858.     esac
  3859.     # We check with `-c' and `-o' for the sake of the "dashmstdout"
  3860.     # mode.  It turns out that the SunPro C++ compiler does not properly
  3861.     # handle `-M -o', and we need to detect this.
  3862.     if depmode=$depmode \
  3863.        source=conftest.c object=conftest.o \
  3864.        depfile=conftest.Po tmpdepfile=conftest.TPo \
  3865.        $SHELL ./depcomp $depcc -c -o conftest.o conftest.c >/dev/null 2>&1 &&
  3866.        grep conftest.h conftest.Po > /dev/null 2>&1 &&
  3867.        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  3868.       am_cv_OBJC_dependencies_compiler_type=$depmode
  3869.       break
  3870.     fi
  3871.   done
  3872.  
  3873.   cd ..
  3874.   rm -rf conftest.dir
  3875. else
  3876.   am_cv_OBJC_dependencies_compiler_type=none
  3877. fi
  3878.  
  3879. fi
  3880. echo "$as_me:$LINENO: result: $am_cv_OBJC_dependencies_compiler_type" >&5
  3881. echo "${ECHO_T}$am_cv_OBJC_dependencies_compiler_type" >&6
  3882. OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type
  3883.  
  3884.  
  3885.  
  3886. if
  3887.   test "x$enable_dependency_tracking" != xno \
  3888.   && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3; then
  3889.   am__fastdepOBJC_TRUE=
  3890.   am__fastdepOBJC_FALSE='#'
  3891. else
  3892.   am__fastdepOBJC_TRUE='#'
  3893.   am__fastdepOBJC_FALSE=
  3894. fi
  3895.  
  3896.  
  3897. echo "$as_me:$LINENO: result: not implemented yet" >&5
  3898. echo "${ECHO_T}not implemented yet" >&6
  3899.  
  3900. if test -n "$ac_tool_prefix"; then
  3901.   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  3902. set dummy ${ac_tool_prefix}ranlib; ac_word=$2
  3903. echo "$as_me:$LINENO: checking for $ac_word" >&5
  3904. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  3905. if test "${ac_cv_prog_RANLIB+set}" = set; then
  3906.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3907. else
  3908.   if test -n "$RANLIB"; then
  3909.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  3910. else
  3911. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3912. for as_dir in $PATH
  3913. do
  3914.   IFS=$as_save_IFS
  3915.   test -z "$as_dir" && as_dir=.
  3916.   for ac_exec_ext in '' $ac_executable_extensions; do
  3917.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3918.     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
  3919.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  3920.     break 2
  3921.   fi
  3922. done
  3923. done
  3924.  
  3925. fi
  3926. fi
  3927. RANLIB=$ac_cv_prog_RANLIB
  3928. if test -n "$RANLIB"; then
  3929.   echo "$as_me:$LINENO: result: $RANLIB" >&5
  3930. echo "${ECHO_T}$RANLIB" >&6
  3931. else
  3932.   echo "$as_me:$LINENO: result: no" >&5
  3933. echo "${ECHO_T}no" >&6
  3934. fi
  3935.  
  3936. fi
  3937. if test -z "$ac_cv_prog_RANLIB"; then
  3938.   ac_ct_RANLIB=$RANLIB
  3939.   # Extract the first word of "ranlib", so it can be a program name with args.
  3940. set dummy ranlib; ac_word=$2
  3941. echo "$as_me:$LINENO: checking for $ac_word" >&5
  3942. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  3943. if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
  3944.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3945. else
  3946.   if test -n "$ac_ct_RANLIB"; then
  3947.   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
  3948. else
  3949. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3950. for as_dir in $PATH
  3951. do
  3952.   IFS=$as_save_IFS
  3953.   test -z "$as_dir" && as_dir=.
  3954.   for ac_exec_ext in '' $ac_executable_extensions; do
  3955.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3956.     ac_cv_prog_ac_ct_RANLIB="ranlib"
  3957.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  3958.     break 2
  3959.   fi
  3960. done
  3961. done
  3962.  
  3963.   test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
  3964. fi
  3965. fi
  3966. ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
  3967. if test -n "$ac_ct_RANLIB"; then
  3968.   echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
  3969. echo "${ECHO_T}$ac_ct_RANLIB" >&6
  3970. else
  3971.   echo "$as_me:$LINENO: result: no" >&5
  3972. echo "${ECHO_T}no" >&6
  3973. fi
  3974.  
  3975.   RANLIB=$ac_ct_RANLIB
  3976. else
  3977.   RANLIB="$ac_cv_prog_RANLIB"
  3978. fi
  3979.  
  3980. if test -n "$ac_tool_prefix"; then
  3981.   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  3982. set dummy ${ac_tool_prefix}strip; ac_word=$2
  3983. echo "$as_me:$LINENO: checking for $ac_word" >&5
  3984. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  3985. if test "${ac_cv_prog_STRIP+set}" = set; then
  3986.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3987. else
  3988.   if test -n "$STRIP"; then
  3989.   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
  3990. else
  3991. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3992. for as_dir in $PATH
  3993. do
  3994.   IFS=$as_save_IFS
  3995.   test -z "$as_dir" && as_dir=.
  3996.   for ac_exec_ext in '' $ac_executable_extensions; do
  3997.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3998.     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
  3999.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4000.     break 2
  4001.   fi
  4002. done
  4003. done
  4004.  
  4005. fi
  4006. fi
  4007. STRIP=$ac_cv_prog_STRIP
  4008. if test -n "$STRIP"; then
  4009.   echo "$as_me:$LINENO: result: $STRIP" >&5
  4010. echo "${ECHO_T}$STRIP" >&6
  4011. else
  4012.   echo "$as_me:$LINENO: result: no" >&5
  4013. echo "${ECHO_T}no" >&6
  4014. fi
  4015.  
  4016. fi
  4017. if test -z "$ac_cv_prog_STRIP"; then
  4018.   ac_ct_STRIP=$STRIP
  4019.   # Extract the first word of "strip", so it can be a program name with args.
  4020. set dummy strip; ac_word=$2
  4021. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4022. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4023. if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
  4024.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4025. else
  4026.   if test -n "$ac_ct_STRIP"; then
  4027.   ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
  4028. else
  4029. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4030. for as_dir in $PATH
  4031. do
  4032.   IFS=$as_save_IFS
  4033.   test -z "$as_dir" && as_dir=.
  4034.   for ac_exec_ext in '' $ac_executable_extensions; do
  4035.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4036.     ac_cv_prog_ac_ct_STRIP="strip"
  4037.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4038.     break 2
  4039.   fi
  4040. done
  4041. done
  4042.  
  4043.   test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
  4044. fi
  4045. fi
  4046. ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
  4047. if test -n "$ac_ct_STRIP"; then
  4048.   echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
  4049. echo "${ECHO_T}$ac_ct_STRIP" >&6
  4050. else
  4051.   echo "$as_me:$LINENO: result: no" >&5
  4052. echo "${ECHO_T}no" >&6
  4053. fi
  4054.  
  4055.   STRIP=$ac_ct_STRIP
  4056. else
  4057.   STRIP="$ac_cv_prog_STRIP"
  4058. fi
  4059.  
  4060. if test -n "$ac_tool_prefix"; then
  4061.   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
  4062. set dummy ${ac_tool_prefix}ar; ac_word=$2
  4063. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4064. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4065. if test "${ac_cv_prog_AR+set}" = set; then
  4066.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4067. else
  4068.   if test -n "$AR"; then
  4069.   ac_cv_prog_AR="$AR" # Let the user override the test.
  4070. else
  4071. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4072. for as_dir in $PATH
  4073. do
  4074.   IFS=$as_save_IFS
  4075.   test -z "$as_dir" && as_dir=.
  4076.   for ac_exec_ext in '' $ac_executable_extensions; do
  4077.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4078.     ac_cv_prog_AR="${ac_tool_prefix}ar"
  4079.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4080.     break 2
  4081.   fi
  4082. done
  4083. done
  4084.  
  4085. fi
  4086. fi
  4087. AR=$ac_cv_prog_AR
  4088. if test -n "$AR"; then
  4089.   echo "$as_me:$LINENO: result: $AR" >&5
  4090. echo "${ECHO_T}$AR" >&6
  4091. else
  4092.   echo "$as_me:$LINENO: result: no" >&5
  4093. echo "${ECHO_T}no" >&6
  4094. fi
  4095.  
  4096. fi
  4097. if test -z "$ac_cv_prog_AR"; then
  4098.   ac_ct_AR=$AR
  4099.   # Extract the first word of "ar", so it can be a program name with args.
  4100. set dummy ar; ac_word=$2
  4101. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4102. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4103. if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
  4104.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4105. else
  4106.   if test -n "$ac_ct_AR"; then
  4107.   ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
  4108. else
  4109. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4110. for as_dir in $PATH
  4111. do
  4112.   IFS=$as_save_IFS
  4113.   test -z "$as_dir" && as_dir=.
  4114.   for ac_exec_ext in '' $ac_executable_extensions; do
  4115.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4116.     ac_cv_prog_ac_ct_AR="ar"
  4117.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4118.     break 2
  4119.   fi
  4120. done
  4121. done
  4122.  
  4123.   test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR=":"
  4124. fi
  4125. fi
  4126. ac_ct_AR=$ac_cv_prog_ac_ct_AR
  4127. if test -n "$ac_ct_AR"; then
  4128.   echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
  4129. echo "${ECHO_T}$ac_ct_AR" >&6
  4130. else
  4131.   echo "$as_me:$LINENO: result: no" >&5
  4132. echo "${ECHO_T}no" >&6
  4133. fi
  4134.  
  4135.   AR=$ac_ct_AR
  4136. else
  4137.   AR="$ac_cv_prog_AR"
  4138. fi
  4139.  
  4140. if test -n "$ac_tool_prefix"; then
  4141.   # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
  4142. set dummy ${ac_tool_prefix}ld; ac_word=$2
  4143. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4144. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4145. if test "${ac_cv_prog_LD+set}" = set; then
  4146.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4147. else
  4148.   if test -n "$LD"; then
  4149.   ac_cv_prog_LD="$LD" # Let the user override the test.
  4150. else
  4151. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4152. for as_dir in $PATH
  4153. do
  4154.   IFS=$as_save_IFS
  4155.   test -z "$as_dir" && as_dir=.
  4156.   for ac_exec_ext in '' $ac_executable_extensions; do
  4157.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4158.     ac_cv_prog_LD="${ac_tool_prefix}ld"
  4159.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4160.     break 2
  4161.   fi
  4162. done
  4163. done
  4164.  
  4165. fi
  4166. fi
  4167. LD=$ac_cv_prog_LD
  4168. if test -n "$LD"; then
  4169.   echo "$as_me:$LINENO: result: $LD" >&5
  4170. echo "${ECHO_T}$LD" >&6
  4171. else
  4172.   echo "$as_me:$LINENO: result: no" >&5
  4173. echo "${ECHO_T}no" >&6
  4174. fi
  4175.  
  4176. fi
  4177. if test -z "$ac_cv_prog_LD"; then
  4178.   ac_ct_LD=$LD
  4179.   # Extract the first word of "ld", so it can be a program name with args.
  4180. set dummy ld; ac_word=$2
  4181. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4182. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4183. if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
  4184.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4185. else
  4186.   if test -n "$ac_ct_LD"; then
  4187.   ac_cv_prog_ac_ct_LD="$ac_ct_LD" # Let the user override the test.
  4188. else
  4189. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4190. for as_dir in $PATH
  4191. do
  4192.   IFS=$as_save_IFS
  4193.   test -z "$as_dir" && as_dir=.
  4194.   for ac_exec_ext in '' $ac_executable_extensions; do
  4195.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4196.     ac_cv_prog_ac_ct_LD="ld"
  4197.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4198.     break 2
  4199.   fi
  4200. done
  4201. done
  4202.  
  4203.   test -z "$ac_cv_prog_ac_ct_LD" && ac_cv_prog_ac_ct_LD=":"
  4204. fi
  4205. fi
  4206. ac_ct_LD=$ac_cv_prog_ac_ct_LD
  4207. if test -n "$ac_ct_LD"; then
  4208.   echo "$as_me:$LINENO: result: $ac_ct_LD" >&5
  4209. echo "${ECHO_T}$ac_ct_LD" >&6
  4210. else
  4211.   echo "$as_me:$LINENO: result: no" >&5
  4212. echo "${ECHO_T}no" >&6
  4213. fi
  4214.  
  4215.   LD=$ac_ct_LD
  4216. else
  4217.   LD="$ac_cv_prog_LD"
  4218. fi
  4219.  
  4220.  
  4221. # Find a good install program.  We prefer a C program (faster),
  4222. # so one script is as good as another.  But avoid the broken or
  4223. # incompatible versions:
  4224. # SysV /etc/install, /usr/sbin/install
  4225. # SunOS /usr/etc/install
  4226. # IRIX /sbin/install
  4227. # AIX /bin/install
  4228. # AmigaOS /C/install, which installs bootblocks on floppy discs
  4229. # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
  4230. # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  4231. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  4232. # ./install, which can be erroneously created by make from ./install.sh.
  4233. echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
  4234. echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
  4235. if test -z "$INSTALL"; then
  4236. if test "${ac_cv_path_install+set}" = set; then
  4237.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4238. else
  4239.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4240. for as_dir in $PATH
  4241. do
  4242.   IFS=$as_save_IFS
  4243.   test -z "$as_dir" && as_dir=.
  4244.   # Account for people who put trailing slashes in PATH elements.
  4245. case $as_dir/ in
  4246.   ./ | .// | /cC/* | \
  4247.   /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
  4248.   /usr/ucb/* ) ;;
  4249.   *)
  4250.     # OSF1 and SCO ODT 3.0 have their own names for install.
  4251.     # Don't use installbsd from OSF since it installs stuff as root
  4252.     # by default.
  4253.     for ac_prog in ginstall scoinst install; do
  4254.       for ac_exec_ext in '' $ac_executable_extensions; do
  4255.         if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
  4256.           if test $ac_prog = install &&
  4257.             grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  4258.             # AIX install.  It has an incompatible calling convention.
  4259.             :
  4260.           elif test $ac_prog = install &&
  4261.             grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  4262.             # program-specific install script used by HP pwplus--don't use.
  4263.             :
  4264.           else
  4265.             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
  4266.             break 3
  4267.           fi
  4268.         fi
  4269.       done
  4270.     done
  4271.     ;;
  4272. esac
  4273. done
  4274.  
  4275.  
  4276. fi
  4277.   if test "${ac_cv_path_install+set}" = set; then
  4278.     INSTALL=$ac_cv_path_install
  4279.   else
  4280.     # As a last resort, use the slow shell script.  We don't cache a
  4281.     # path for INSTALL within a source directory, because that will
  4282.     # break other packages using the cache if that directory is
  4283.     # removed, or if the path is relative.
  4284.     INSTALL=$ac_install_sh
  4285.   fi
  4286. fi
  4287. echo "$as_me:$LINENO: result: $INSTALL" >&5
  4288. echo "${ECHO_T}$INSTALL" >&6
  4289.  
  4290. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  4291. # It thinks the first close brace ends the variable substitution.
  4292. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  4293.  
  4294. test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  4295.  
  4296. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  4297.  
  4298.  
  4299. echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
  4300. echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
  4301. if test "${ac_cv_c_const+set}" = set; then
  4302.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4303. else
  4304.   cat >conftest.$ac_ext <<_ACEOF
  4305. #line $LINENO "configure"
  4306. /* confdefs.h.  */
  4307. _ACEOF
  4308. cat confdefs.h >>conftest.$ac_ext
  4309. cat >>conftest.$ac_ext <<_ACEOF
  4310. /* end confdefs.h.  */
  4311.  
  4312. int
  4313. main ()
  4314. {
  4315. /* FIXME: Include the comments suggested by Paul. */
  4316. #ifndef __cplusplus
  4317.   /* Ultrix mips cc rejects this.  */
  4318.   typedef int charset[2];
  4319.   const charset x;
  4320.   /* SunOS 4.1.1 cc rejects this.  */
  4321.   char const *const *ccp;
  4322.   char **p;
  4323.   /* NEC SVR4.0.2 mips cc rejects this.  */
  4324.   struct point {int x, y;};
  4325.   static struct point const zero = {0,0};
  4326.   /* AIX XL C 1.02.0.0 rejects this.
  4327.      It does not let you subtract one const X* pointer from another in
  4328.      an arm of an if-expression whose if-part is not a constant
  4329.      expression */
  4330.   const char *g = "string";
  4331.   ccp = &g + (g ? g-g : 0);
  4332.   /* HPUX 7.0 cc rejects these. */
  4333.   ++ccp;
  4334.   p = (char**) ccp;
  4335.   ccp = (char const *const *) p;
  4336.   { /* SCO 3.2v4 cc rejects this.  */
  4337.     char *t;
  4338.     char const *s = 0 ? (char *) 0 : (char const *) 0;
  4339.  
  4340.     *t++ = 0;
  4341.   }
  4342.   { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
  4343.     int x[] = {25, 17};
  4344.     const int *foo = &x[0];
  4345.     ++foo;
  4346.   }
  4347.   { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
  4348.     typedef const int *iptr;
  4349.     iptr p = 0;
  4350.     ++p;
  4351.   }
  4352.   { /* AIX XL C 1.02.0.0 rejects this saying
  4353.        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  4354.     struct s { int j; const int *ap[3]; };
  4355.     struct s *b; b->j = 5;
  4356.   }
  4357.   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  4358.     const int foo = 10;
  4359.   }
  4360. #endif
  4361.  
  4362.   ;
  4363.   return 0;
  4364. }
  4365. _ACEOF
  4366. rm -f conftest.$ac_objext
  4367. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  4368.   (eval $ac_compile) 2>&5
  4369.   ac_status=$?
  4370.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4371.   (exit $ac_status); } &&
  4372.          { ac_try='test -s conftest.$ac_objext'
  4373.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  4374.   (eval $ac_try) 2>&5
  4375.   ac_status=$?
  4376.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4377.   (exit $ac_status); }; }; then
  4378.   ac_cv_c_const=yes
  4379. else
  4380.   echo "$as_me: failed program was:" >&5
  4381. sed 's/^/| /' conftest.$ac_ext >&5
  4382.  
  4383. ac_cv_c_const=no
  4384. fi
  4385. rm -f conftest.$ac_objext conftest.$ac_ext
  4386. fi
  4387. echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
  4388. echo "${ECHO_T}$ac_cv_c_const" >&6
  4389. if test $ac_cv_c_const = no; then
  4390.  
  4391. cat >>confdefs.h <<\_ACEOF
  4392. #define const
  4393. _ACEOF
  4394.  
  4395. fi
  4396.  
  4397. echo "$as_me:$LINENO: checking for inline" >&5
  4398. echo $ECHO_N "checking for inline... $ECHO_C" >&6
  4399. if test "${ac_cv_c_inline+set}" = set; then
  4400.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4401. else
  4402.   ac_cv_c_inline=no
  4403. for ac_kw in inline __inline__ __inline; do
  4404.   cat >conftest.$ac_ext <<_ACEOF
  4405. #line $LINENO "configure"
  4406. /* confdefs.h.  */
  4407. _ACEOF
  4408. cat confdefs.h >>conftest.$ac_ext
  4409. cat >>conftest.$ac_ext <<_ACEOF
  4410. /* end confdefs.h.  */
  4411. #ifndef __cplusplus
  4412. typedef int foo_t;
  4413. static $ac_kw foo_t static_foo () {return 0; }
  4414. $ac_kw foo_t foo () {return 0; }
  4415. #endif
  4416.  
  4417. _ACEOF
  4418. rm -f conftest.$ac_objext
  4419. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  4420.   (eval $ac_compile) 2>&5
  4421.   ac_status=$?
  4422.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4423.   (exit $ac_status); } &&
  4424.          { ac_try='test -s conftest.$ac_objext'
  4425.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  4426.   (eval $ac_try) 2>&5
  4427.   ac_status=$?
  4428.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4429.   (exit $ac_status); }; }; then
  4430.   ac_cv_c_inline=$ac_kw; break
  4431. else
  4432.   echo "$as_me: failed program was:" >&5
  4433. sed 's/^/| /' conftest.$ac_ext >&5
  4434.  
  4435. fi
  4436. rm -f conftest.$ac_objext conftest.$ac_ext
  4437. done
  4438.  
  4439. fi
  4440. echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
  4441. echo "${ECHO_T}$ac_cv_c_inline" >&6
  4442. case $ac_cv_c_inline in
  4443.   inline | yes) ;;
  4444.   no)
  4445. cat >>confdefs.h <<\_ACEOF
  4446. #define inline
  4447. _ACEOF
  4448.  ;;
  4449.   *)  cat >>confdefs.h <<_ACEOF
  4450. #define inline $ac_cv_c_inline
  4451. _ACEOF
  4452.  ;;
  4453. esac
  4454.  
  4455.  
  4456. LDFLAGS_vlc="${LDFLAGS}"
  4457. LIBEXT=".so"
  4458.  
  4459. case "x${target_os}" in
  4460.   x)
  4461.     SYS=unknown
  4462.     ;;
  4463.   xlinux*)
  4464.     SYS=linux
  4465.     ;;
  4466.   xbsdi*)
  4467.     SYS=bsdi
  4468.     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
  4469.     LDFLAGS_dvd="${LDFLAGS_dvd} -ldvd"
  4470.     LDFLAGS_dvdcss="${LDFLAGS_dvdcss} -ldvd"
  4471.     LDFLAGS_vcd="${LDFLAGS_vcd} -ldvd"
  4472.     ;;
  4473.   x*bsd*)
  4474.     SYS="${target_os}"
  4475.     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
  4476.     ;;
  4477.   xdarwin*)
  4478.     SYS=darwin
  4479.     CFLAGS_save="${CFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
  4480.     CXXFLAGS_save="${CXXFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
  4481.     OBJCFLAGS_save="${OBJCFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
  4482.     LDFLAGS_vlc="${LDFLAGS_vlc} -all_load"
  4483.     LDFLAGS_ffmpeg="${LDFLAGS_ffmpeg} -all_load"
  4484.     LIBEXT=".dylib"
  4485.     ;;
  4486.   x*mingw32* | x*cygwin*)
  4487.     if test -n "$ac_tool_prefix"; then
  4488.   # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args.
  4489. set dummy ${ac_tool_prefix}windres; ac_word=$2
  4490. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4491. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4492. if test "${ac_cv_prog_WINDRES+set}" = set; then
  4493.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4494. else
  4495.   if test -n "$WINDRES"; then
  4496.   ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
  4497. else
  4498. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4499. for as_dir in $PATH
  4500. do
  4501.   IFS=$as_save_IFS
  4502.   test -z "$as_dir" && as_dir=.
  4503.   for ac_exec_ext in '' $ac_executable_extensions; do
  4504.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4505.     ac_cv_prog_WINDRES="${ac_tool_prefix}windres"
  4506.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4507.     break 2
  4508.   fi
  4509. done
  4510. done
  4511.  
  4512. fi
  4513. fi
  4514. WINDRES=$ac_cv_prog_WINDRES
  4515. if test -n "$WINDRES"; then
  4516.   echo "$as_me:$LINENO: result: $WINDRES" >&5
  4517. echo "${ECHO_T}$WINDRES" >&6
  4518. else
  4519.   echo "$as_me:$LINENO: result: no" >&5
  4520. echo "${ECHO_T}no" >&6
  4521. fi
  4522.  
  4523. fi
  4524. if test -z "$ac_cv_prog_WINDRES"; then
  4525.   ac_ct_WINDRES=$WINDRES
  4526.   # Extract the first word of "windres", so it can be a program name with args.
  4527. set dummy windres; ac_word=$2
  4528. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4529. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4530. if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then
  4531.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4532. else
  4533.   if test -n "$ac_ct_WINDRES"; then
  4534.   ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test.
  4535. else
  4536. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4537. for as_dir in $PATH
  4538. do
  4539.   IFS=$as_save_IFS
  4540.   test -z "$as_dir" && as_dir=.
  4541.   for ac_exec_ext in '' $ac_executable_extensions; do
  4542.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4543.     ac_cv_prog_ac_ct_WINDRES="windres"
  4544.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4545.     break 2
  4546.   fi
  4547. done
  4548. done
  4549.  
  4550.   test -z "$ac_cv_prog_ac_ct_WINDRES" && ac_cv_prog_ac_ct_WINDRES=":"
  4551. fi
  4552. fi
  4553. ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES
  4554. if test -n "$ac_ct_WINDRES"; then
  4555.   echo "$as_me:$LINENO: result: $ac_ct_WINDRES" >&5
  4556. echo "${ECHO_T}$ac_ct_WINDRES" >&6
  4557. else
  4558.   echo "$as_me:$LINENO: result: no" >&5
  4559. echo "${ECHO_T}no" >&6
  4560. fi
  4561.  
  4562.   WINDRES=$ac_ct_WINDRES
  4563. else
  4564.   WINDRES="$ac_cv_prog_WINDRES"
  4565. fi
  4566.  
  4567.     LIBEXT=".dll"
  4568.  
  4569.     case "x${target_os}" in
  4570.       x*mingw32*)
  4571.         SYS=mingw32
  4572.         ;;
  4573.       x*cygwin*)
  4574.                         cat >conftest.$ac_ext <<_ACEOF
  4575. #line $LINENO "configure"
  4576. /* confdefs.h.  */
  4577. _ACEOF
  4578. cat confdefs.h >>conftest.$ac_ext
  4579. cat >>conftest.$ac_ext <<_ACEOF
  4580. /* end confdefs.h.  */
  4581. #ifdef WIN32
  4582.              yes
  4583.              #endif
  4584. _ACEOF
  4585. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  4586.   $EGREP "yes" >/dev/null 2>&1; then
  4587.   SYS=mingw32
  4588. else
  4589.   SYS=cygwin
  4590. fi
  4591. rm -f conftest*
  4592.  
  4593.         ;;
  4594.     esac
  4595.  
  4596.     if test "x$SYS" = "xmingw32"; then
  4597.         # add ws2_32 for closesocket, select, recv
  4598.         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"
  4599.         CPPFLAGS="${CPPFLAGS_save}"
  4600.         LDFLAGS_vlc="${LDFLAGS_vlc} -lws2_32 -lnetapi32 -lwinmm -mwindows"
  4601.         LDFLAGS_ipv4="${LDFLAGS_ipv4} -lws2_32"
  4602.         LDFLAGS_ipv6="${LDFLAGS_ipv6} -lws2_32"
  4603.         LDFLAGS_access_http="${LDFLAGS_access_http} -lws2_32"
  4604.         LDFLAGS_access_mms="${LDFLAGS_access_mms} -lws2_32"
  4605.         LDFLAGS_access_udp="${LDFLAGS_access_udp} -lws2_32"
  4606.         LDFLAGS_access_ftp="${LDFLAGS_access_ftp} -lws2_32"
  4607.         LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lws2_32"
  4608.         LDFLAGS_sap="${LDFLAGS_sap} -lws2_32"
  4609.         LDFLAGS_slp="${LDFLAGS_slp} -lws2_32"
  4610.         LDFLAGS_httpd="${LDFLAGS_httpd} -lws2_32"
  4611.     fi
  4612.     ;;
  4613.   x*nto*)
  4614.     SYS=nto
  4615.     LDFLAGS_x11="${LDFLAGS_x11} -lsocket"
  4616.     LDFLAGS_xvideo="${LDFLAGS_xvideo} -lsocket"
  4617.     ;;
  4618.   xsolaris*)
  4619.     SYS=solaris
  4620.     ;;
  4621.   xhpux*)
  4622.     SYS=hpux
  4623.     LIBEXT=".sl"
  4624.     ;;
  4625.   xbeos)
  4626.     SYS=beos
  4627.     CFLAGS_save="${CFLAGS_save} -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual"; CFLAGS="${CFLAGS_save}"
  4628.     CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual"; CXXFLAGS="${CXXFLAGS_save}"
  4629.     LDFLAGS_vlc="${LDFLAGS_vlc} -lbe"
  4630.     LDFLAGS_plugins="${LDFLAGS_plugins} -nostart"
  4631.     LDFLAGS_beos="${LDFLAGS_beos} -lbe -lmedia -lroot -ltracker -lstdc++.r4 -ltranslation"
  4632.     LDFLAGS_access_mms="${LDFLAGS_access_mms} -lsocket"
  4633.     LDFLAGS_ipv4="${LDFLAGS_ipv4} -lsocket"
  4634.     LDFLAGS_httpd="${LDFLAGS_httpd} -lsocket"
  4635.         echo "$as_me:$LINENO: checking for inet_ntoa in -lbind" >&5
  4636. echo $ECHO_N "checking for inet_ntoa in -lbind... $ECHO_C" >&6
  4637. if test "${ac_cv_lib_bind_inet_ntoa+set}" = set; then
  4638.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4639. else
  4640.   ac_check_lib_save_LIBS=$LIBS
  4641. LIBS="-lbind  $LIBS"
  4642. cat >conftest.$ac_ext <<_ACEOF
  4643. #line $LINENO "configure"
  4644. /* confdefs.h.  */
  4645. _ACEOF
  4646. cat confdefs.h >>conftest.$ac_ext
  4647. cat >>conftest.$ac_ext <<_ACEOF
  4648. /* end confdefs.h.  */
  4649.  
  4650. /* Override any gcc2 internal prototype to avoid an error.  */
  4651. #ifdef __cplusplus
  4652. extern "C"
  4653. #endif
  4654. /* We use char because int might match the return type of a gcc2
  4655.    builtin and then its argument prototype would still apply.  */
  4656. char inet_ntoa ();
  4657. int
  4658. main ()
  4659. {
  4660. inet_ntoa ();
  4661.   ;
  4662.   return 0;
  4663. }
  4664. _ACEOF
  4665. rm -f conftest.$ac_objext conftest$ac_exeext
  4666. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  4667.   (eval $ac_link) 2>&5
  4668.   ac_status=$?
  4669.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4670.   (exit $ac_status); } &&
  4671.          { ac_try='test -s conftest$ac_exeext'
  4672.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  4673.   (eval $ac_try) 2>&5
  4674.   ac_status=$?
  4675.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4676.   (exit $ac_status); }; }; then
  4677.   ac_cv_lib_bind_inet_ntoa=yes
  4678. else
  4679.   echo "$as_me: failed program was:" >&5
  4680. sed 's/^/| /' conftest.$ac_ext >&5
  4681.  
  4682. ac_cv_lib_bind_inet_ntoa=no
  4683. fi
  4684. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  4685. LIBS=$ac_check_lib_save_LIBS
  4686. fi
  4687. echo "$as_me:$LINENO: result: $ac_cv_lib_bind_inet_ntoa" >&5
  4688. echo "${ECHO_T}$ac_cv_lib_bind_inet_ntoa" >&6
  4689. if test $ac_cv_lib_bind_inet_ntoa = yes; then
  4690.    LDFLAGS_access_mms="${LDFLAGS_access_mms} -lbind"
  4691.           LDFLAGS_ipv4="${LDFLAGS_ipv4} -lbind"
  4692.           LDFLAGS_httpd="${LDFLAGS_httpd} -lbind"
  4693. fi
  4694.  
  4695.     ;;
  4696.   x*)
  4697.     SYS="${target_os}"
  4698.     ;;
  4699. esac
  4700.  
  4701.  
  4702. if test "x${SYS}" = "xbeos"; then
  4703.   HAVE_BEOS_TRUE=
  4704.   HAVE_BEOS_FALSE='#'
  4705. else
  4706.   HAVE_BEOS_TRUE='#'
  4707.   HAVE_BEOS_FALSE=
  4708. fi
  4709.  
  4710.  
  4711.  
  4712. if test "x${SYS}" = "xdarwin"; then
  4713.   HAVE_DARWIN_TRUE=
  4714.   HAVE_DARWIN_FALSE='#'
  4715. else
  4716.   HAVE_DARWIN_TRUE='#'
  4717.   HAVE_DARWIN_FALSE=
  4718. fi
  4719.  
  4720.  
  4721.  
  4722. if test "x${SYS}" = "xmingw32"; then
  4723.   HAVE_WIN32_TRUE=
  4724.   HAVE_WIN32_FALSE='#'
  4725. else
  4726.   HAVE_WIN32_TRUE='#'
  4727.   HAVE_WIN32_FALSE=
  4728. fi
  4729.  
  4730.  
  4731. ALL_LINGUAS="de en_GB fr it ja no ru nl pl sv"
  4732.  
  4733.  
  4734.         MKINSTALLDIRS=
  4735.   if test -n "$ac_aux_dir"; then
  4736.     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
  4737.   fi
  4738.   if test -z "$MKINSTALLDIRS"; then
  4739.     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
  4740.   fi
  4741.  
  4742.  
  4743.  
  4744.  
  4745.  
  4746.         # Extract the first word of "msgfmt", so it can be a program name with args.
  4747. set dummy msgfmt; ac_word=$2
  4748. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4749. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4750. if test "${ac_cv_path_MSGFMT+set}" = set; then
  4751.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4752. else
  4753.   case "$MSGFMT" in
  4754.   /*)
  4755.   ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
  4756.   ;;
  4757.   *)
  4758.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  4759.   for ac_dir in $PATH; do
  4760.     test -z "$ac_dir" && ac_dir=.
  4761.     if test -f $ac_dir/$ac_word; then
  4762.       if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
  4763.      (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
  4764.     ac_cv_path_MSGFMT="$ac_dir/$ac_word"
  4765.     break
  4766.       fi
  4767.     fi
  4768.   done
  4769.   IFS="$ac_save_ifs"
  4770.   test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
  4771.   ;;
  4772. esac
  4773. fi
  4774. MSGFMT="$ac_cv_path_MSGFMT"
  4775. if test "$MSGFMT" != ":"; then
  4776.   echo "$as_me:$LINENO: result: $MSGFMT" >&5
  4777. echo "${ECHO_T}$MSGFMT" >&6
  4778. else
  4779.   echo "$as_me:$LINENO: result: no" >&5
  4780. echo "${ECHO_T}no" >&6
  4781. fi
  4782.  
  4783.   # Extract the first word of "gmsgfmt", so it can be a program name with args.
  4784. set dummy gmsgfmt; ac_word=$2
  4785. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4786. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4787. if test "${ac_cv_path_GMSGFMT+set}" = set; then
  4788.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4789. else
  4790.   case $GMSGFMT in
  4791.   [\\/]* | ?:[\\/]*)
  4792.   ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
  4793.   ;;
  4794.   *)
  4795.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4796. for as_dir in $PATH
  4797. do
  4798.   IFS=$as_save_IFS
  4799.   test -z "$as_dir" && as_dir=.
  4800.   for ac_exec_ext in '' $ac_executable_extensions; do
  4801.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4802.     ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
  4803.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4804.     break 2
  4805.   fi
  4806. done
  4807. done
  4808.  
  4809.   test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
  4810.   ;;
  4811. esac
  4812. fi
  4813. GMSGFMT=$ac_cv_path_GMSGFMT
  4814.  
  4815. if test -n "$GMSGFMT"; then
  4816.   echo "$as_me:$LINENO: result: $GMSGFMT" >&5
  4817. echo "${ECHO_T}$GMSGFMT" >&6
  4818. else
  4819.   echo "$as_me:$LINENO: result: no" >&5
  4820. echo "${ECHO_T}no" >&6
  4821. fi
  4822.  
  4823.  
  4824.         # Extract the first word of "xgettext", so it can be a program name with args.
  4825. set dummy xgettext; ac_word=$2
  4826. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4827. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4828. if test "${ac_cv_path_XGETTEXT+set}" = set; then
  4829.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4830. else
  4831.   case "$XGETTEXT" in
  4832.   /*)
  4833.   ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
  4834.   ;;
  4835.   *)
  4836.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  4837.   for ac_dir in $PATH; do
  4838.     test -z "$ac_dir" && ac_dir=.
  4839.     if test -f $ac_dir/$ac_word; then
  4840.       if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
  4841.      (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
  4842.     ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
  4843.     break
  4844.       fi
  4845.     fi
  4846.   done
  4847.   IFS="$ac_save_ifs"
  4848.   test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
  4849.   ;;
  4850. esac
  4851. fi
  4852. XGETTEXT="$ac_cv_path_XGETTEXT"
  4853. if test "$XGETTEXT" != ":"; then
  4854.   echo "$as_me:$LINENO: result: $XGETTEXT" >&5
  4855. echo "${ECHO_T}$XGETTEXT" >&6
  4856. else
  4857.   echo "$as_me:$LINENO: result: no" >&5
  4858. echo "${ECHO_T}no" >&6
  4859. fi
  4860.  
  4861.     rm -f messages.po
  4862.  
  4863.     # Extract the first word of "msgmerge", so it can be a program name with args.
  4864. set dummy msgmerge; ac_word=$2
  4865. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4866. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4867. if test "${ac_cv_path_MSGMERGE+set}" = set; then
  4868.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4869. else
  4870.   case "$MSGMERGE" in
  4871.   /*)
  4872.   ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
  4873.   ;;
  4874.   *)
  4875.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  4876.   for ac_dir in $PATH; do
  4877.     test -z "$ac_dir" && ac_dir=.
  4878.     if test -f $ac_dir/$ac_word; then
  4879.       if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
  4880.     ac_cv_path_MSGMERGE="$ac_dir/$ac_word"
  4881.     break
  4882.       fi
  4883.     fi
  4884.   done
  4885.   IFS="$ac_save_ifs"
  4886.   test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
  4887.   ;;
  4888. esac
  4889. fi
  4890. MSGMERGE="$ac_cv_path_MSGMERGE"
  4891. if test "$MSGMERGE" != ":"; then
  4892.   echo "$as_me:$LINENO: result: $MSGMERGE" >&5
  4893. echo "${ECHO_T}$MSGMERGE" >&6
  4894. else
  4895.   echo "$as_me:$LINENO: result: no" >&5
  4896. echo "${ECHO_T}no" >&6
  4897. fi
  4898.  
  4899.  
  4900.       if test "$GMSGFMT" != ":"; then
  4901.             if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
  4902.        (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
  4903.       : ;
  4904.     else
  4905.       GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
  4906.       echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
  4907. echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6
  4908.       GMSGFMT=":"
  4909.     fi
  4910.   fi
  4911.  
  4912.       if test "$XGETTEXT" != ":"; then
  4913.             if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
  4914.        (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
  4915.       : ;
  4916.     else
  4917.       echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
  4918. echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
  4919.       XGETTEXT=":"
  4920.     fi
  4921.         rm -f messages.po
  4922.   fi
  4923.  
  4924.             ac_config_commands="$ac_config_commands default-1"
  4925.  
  4926.  
  4927. if test -n "$ac_tool_prefix"; then
  4928.   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  4929. set dummy ${ac_tool_prefix}ranlib; ac_word=$2
  4930. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4931. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4932. if test "${ac_cv_prog_RANLIB+set}" = set; then
  4933.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4934. else
  4935.   if test -n "$RANLIB"; then
  4936.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  4937. else
  4938. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4939. for as_dir in $PATH
  4940. do
  4941.   IFS=$as_save_IFS
  4942.   test -z "$as_dir" && as_dir=.
  4943.   for ac_exec_ext in '' $ac_executable_extensions; do
  4944.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4945.     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
  4946.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4947.     break 2
  4948.   fi
  4949. done
  4950. done
  4951.  
  4952. fi
  4953. fi
  4954. RANLIB=$ac_cv_prog_RANLIB
  4955. if test -n "$RANLIB"; then
  4956.   echo "$as_me:$LINENO: result: $RANLIB" >&5
  4957. echo "${ECHO_T}$RANLIB" >&6
  4958. else
  4959.   echo "$as_me:$LINENO: result: no" >&5
  4960. echo "${ECHO_T}no" >&6
  4961. fi
  4962.  
  4963. fi
  4964. if test -z "$ac_cv_prog_RANLIB"; then
  4965.   ac_ct_RANLIB=$RANLIB
  4966.   # Extract the first word of "ranlib", so it can be a program name with args.
  4967. set dummy ranlib; ac_word=$2
  4968. echo "$as_me:$LINENO: checking for $ac_word" >&5
  4969. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  4970. if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
  4971.   echo $ECHO_N "(cached) $ECHO_C" >&6
  4972. else
  4973.   if test -n "$ac_ct_RANLIB"; then
  4974.   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
  4975. else
  4976. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  4977. for as_dir in $PATH
  4978. do
  4979.   IFS=$as_save_IFS
  4980.   test -z "$as_dir" && as_dir=.
  4981.   for ac_exec_ext in '' $ac_executable_extensions; do
  4982.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4983.     ac_cv_prog_ac_ct_RANLIB="ranlib"
  4984.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  4985.     break 2
  4986.   fi
  4987. done
  4988. done
  4989.  
  4990.   test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
  4991. fi
  4992. fi
  4993. ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
  4994. if test -n "$ac_ct_RANLIB"; then
  4995.   echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
  4996. echo "${ECHO_T}$ac_ct_RANLIB" >&6
  4997. else
  4998.   echo "$as_me:$LINENO: result: no" >&5
  4999. echo "${ECHO_T}no" >&6
  5000. fi
  5001.  
  5002.   RANLIB=$ac_ct_RANLIB
  5003. else
  5004.   RANLIB="$ac_cv_prog_RANLIB"
  5005. fi
  5006.  
  5007.  
  5008.         echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5
  5009. echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6
  5010. if test "${ac_cv_lib_cposix_strerror+set}" = set; then
  5011.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5012. else
  5013.   ac_check_lib_save_LIBS=$LIBS
  5014. LIBS="-lcposix  $LIBS"
  5015. cat >conftest.$ac_ext <<_ACEOF
  5016. #line $LINENO "configure"
  5017. /* confdefs.h.  */
  5018. _ACEOF
  5019. cat confdefs.h >>conftest.$ac_ext
  5020. cat >>conftest.$ac_ext <<_ACEOF
  5021. /* end confdefs.h.  */
  5022.  
  5023. /* Override any gcc2 internal prototype to avoid an error.  */
  5024. #ifdef __cplusplus
  5025. extern "C"
  5026. #endif
  5027. /* We use char because int might match the return type of a gcc2
  5028.    builtin and then its argument prototype would still apply.  */
  5029. char strerror ();
  5030. int
  5031. main ()
  5032. {
  5033. strerror ();
  5034.   ;
  5035.   return 0;
  5036. }
  5037. _ACEOF
  5038. rm -f conftest.$ac_objext conftest$ac_exeext
  5039. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5040.   (eval $ac_link) 2>&5
  5041.   ac_status=$?
  5042.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5043.   (exit $ac_status); } &&
  5044.          { ac_try='test -s conftest$ac_exeext'
  5045.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5046.   (eval $ac_try) 2>&5
  5047.   ac_status=$?
  5048.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5049.   (exit $ac_status); }; }; then
  5050.   ac_cv_lib_cposix_strerror=yes
  5051. else
  5052.   echo "$as_me: failed program was:" >&5
  5053. sed 's/^/| /' conftest.$ac_ext >&5
  5054.  
  5055. ac_cv_lib_cposix_strerror=no
  5056. fi
  5057. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  5058. LIBS=$ac_check_lib_save_LIBS
  5059. fi
  5060. echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5
  5061. echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6
  5062. if test $ac_cv_lib_cposix_strerror = yes; then
  5063.   LIBS="$LIBS -lcposix"
  5064. fi
  5065.  
  5066.  
  5067.  
  5068. echo "$as_me:$LINENO: checking for ANSI C header files" >&5
  5069. echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
  5070. if test "${ac_cv_header_stdc+set}" = set; then
  5071.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5072. else
  5073.   cat >conftest.$ac_ext <<_ACEOF
  5074. #line $LINENO "configure"
  5075. /* confdefs.h.  */
  5076. _ACEOF
  5077. cat confdefs.h >>conftest.$ac_ext
  5078. cat >>conftest.$ac_ext <<_ACEOF
  5079. /* end confdefs.h.  */
  5080. #include <stdlib.h>
  5081. #include <stdarg.h>
  5082. #include <string.h>
  5083. #include <float.h>
  5084.  
  5085. int
  5086. main ()
  5087. {
  5088.  
  5089.   ;
  5090.   return 0;
  5091. }
  5092. _ACEOF
  5093. rm -f conftest.$ac_objext
  5094. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  5095.   (eval $ac_compile) 2>&5
  5096.   ac_status=$?
  5097.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5098.   (exit $ac_status); } &&
  5099.          { ac_try='test -s conftest.$ac_objext'
  5100.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5101.   (eval $ac_try) 2>&5
  5102.   ac_status=$?
  5103.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5104.   (exit $ac_status); }; }; then
  5105.   ac_cv_header_stdc=yes
  5106. else
  5107.   echo "$as_me: failed program was:" >&5
  5108. sed 's/^/| /' conftest.$ac_ext >&5
  5109.  
  5110. ac_cv_header_stdc=no
  5111. fi
  5112. rm -f conftest.$ac_objext conftest.$ac_ext
  5113.  
  5114. if test $ac_cv_header_stdc = yes; then
  5115.   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  5116.   cat >conftest.$ac_ext <<_ACEOF
  5117. #line $LINENO "configure"
  5118. /* confdefs.h.  */
  5119. _ACEOF
  5120. cat confdefs.h >>conftest.$ac_ext
  5121. cat >>conftest.$ac_ext <<_ACEOF
  5122. /* end confdefs.h.  */
  5123. #include <string.h>
  5124.  
  5125. _ACEOF
  5126. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  5127.   $EGREP "memchr" >/dev/null 2>&1; then
  5128.   :
  5129. else
  5130.   ac_cv_header_stdc=no
  5131. fi
  5132. rm -f conftest*
  5133.  
  5134. fi
  5135.  
  5136. if test $ac_cv_header_stdc = yes; then
  5137.   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  5138.   cat >conftest.$ac_ext <<_ACEOF
  5139. #line $LINENO "configure"
  5140. /* confdefs.h.  */
  5141. _ACEOF
  5142. cat confdefs.h >>conftest.$ac_ext
  5143. cat >>conftest.$ac_ext <<_ACEOF
  5144. /* end confdefs.h.  */
  5145. #include <stdlib.h>
  5146.  
  5147. _ACEOF
  5148. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  5149.   $EGREP "free" >/dev/null 2>&1; then
  5150.   :
  5151. else
  5152.   ac_cv_header_stdc=no
  5153. fi
  5154. rm -f conftest*
  5155.  
  5156. fi
  5157.  
  5158. if test $ac_cv_header_stdc = yes; then
  5159.   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  5160.   if test "$cross_compiling" = yes; then
  5161.   :
  5162. else
  5163.   cat >conftest.$ac_ext <<_ACEOF
  5164. #line $LINENO "configure"
  5165. /* confdefs.h.  */
  5166. _ACEOF
  5167. cat confdefs.h >>conftest.$ac_ext
  5168. cat >>conftest.$ac_ext <<_ACEOF
  5169. /* end confdefs.h.  */
  5170. #include <ctype.h>
  5171. #if ((' ' & 0x0FF) == 0x020)
  5172. # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  5173. # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  5174. #else
  5175. # define ISLOWER(c) \
  5176.                    (('a' <= (c) && (c) <= 'i') \
  5177.                      || ('j' <= (c) && (c) <= 'r') \
  5178.                      || ('s' <= (c) && (c) <= 'z'))
  5179. # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
  5180. #endif
  5181.  
  5182. #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  5183. int
  5184. main ()
  5185. {
  5186.   int i;
  5187.   for (i = 0; i < 256; i++)
  5188.     if (XOR (islower (i), ISLOWER (i))
  5189.         || toupper (i) != TOUPPER (i))
  5190.       exit(2);
  5191.   exit (0);
  5192. }
  5193. _ACEOF
  5194. rm -f conftest$ac_exeext
  5195. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5196.   (eval $ac_link) 2>&5
  5197.   ac_status=$?
  5198.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5199.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  5200.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5201.   (eval $ac_try) 2>&5
  5202.   ac_status=$?
  5203.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5204.   (exit $ac_status); }; }; then
  5205.   :
  5206. else
  5207.   echo "$as_me: program exited with status $ac_status" >&5
  5208. echo "$as_me: failed program was:" >&5
  5209. sed 's/^/| /' conftest.$ac_ext >&5
  5210.  
  5211. ( exit $ac_status )
  5212. ac_cv_header_stdc=no
  5213. fi
  5214. rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  5215. fi
  5216. fi
  5217. fi
  5218. echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
  5219. echo "${ECHO_T}$ac_cv_header_stdc" >&6
  5220. if test $ac_cv_header_stdc = yes; then
  5221.  
  5222. cat >>confdefs.h <<\_ACEOF
  5223. #define STDC_HEADERS 1
  5224. _ACEOF
  5225.  
  5226. fi
  5227.  
  5228. # On IRIX 5.3, sys/types and inttypes.h are conflicting.
  5229.  
  5230.  
  5231.  
  5232.  
  5233.  
  5234.  
  5235.  
  5236.  
  5237.  
  5238. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
  5239.                   inttypes.h stdint.h unistd.h
  5240. do
  5241. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  5242. echo "$as_me:$LINENO: checking for $ac_header" >&5
  5243. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  5244. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  5245.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5246. else
  5247.   cat >conftest.$ac_ext <<_ACEOF
  5248. #line $LINENO "configure"
  5249. /* confdefs.h.  */
  5250. _ACEOF
  5251. cat confdefs.h >>conftest.$ac_ext
  5252. cat >>conftest.$ac_ext <<_ACEOF
  5253. /* end confdefs.h.  */
  5254. $ac_includes_default
  5255.  
  5256. #include <$ac_header>
  5257. _ACEOF
  5258. rm -f conftest.$ac_objext
  5259. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  5260.   (eval $ac_compile) 2>&5
  5261.   ac_status=$?
  5262.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5263.   (exit $ac_status); } &&
  5264.          { ac_try='test -s conftest.$ac_objext'
  5265.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5266.   (eval $ac_try) 2>&5
  5267.   ac_status=$?
  5268.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5269.   (exit $ac_status); }; }; then
  5270.   eval "$as_ac_Header=yes"
  5271. else
  5272.   echo "$as_me: failed program was:" >&5
  5273. sed 's/^/| /' conftest.$ac_ext >&5
  5274.  
  5275. eval "$as_ac_Header=no"
  5276. fi
  5277. rm -f conftest.$ac_objext conftest.$ac_ext
  5278. fi
  5279. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  5280. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  5281. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  5282.   cat >>confdefs.h <<_ACEOF
  5283. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  5284. _ACEOF
  5285.  
  5286. fi
  5287.  
  5288. done
  5289.  
  5290.  
  5291. echo "$as_me:$LINENO: checking for off_t" >&5
  5292. echo $ECHO_N "checking for off_t... $ECHO_C" >&6
  5293. if test "${ac_cv_type_off_t+set}" = set; then
  5294.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5295. else
  5296.   cat >conftest.$ac_ext <<_ACEOF
  5297. #line $LINENO "configure"
  5298. /* confdefs.h.  */
  5299. _ACEOF
  5300. cat confdefs.h >>conftest.$ac_ext
  5301. cat >>conftest.$ac_ext <<_ACEOF
  5302. /* end confdefs.h.  */
  5303. $ac_includes_default
  5304. int
  5305. main ()
  5306. {
  5307. if ((off_t *) 0)
  5308.   return 0;
  5309. if (sizeof (off_t))
  5310.   return 0;
  5311.   ;
  5312.   return 0;
  5313. }
  5314. _ACEOF
  5315. rm -f conftest.$ac_objext
  5316. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  5317.   (eval $ac_compile) 2>&5
  5318.   ac_status=$?
  5319.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5320.   (exit $ac_status); } &&
  5321.          { ac_try='test -s conftest.$ac_objext'
  5322.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5323.   (eval $ac_try) 2>&5
  5324.   ac_status=$?
  5325.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5326.   (exit $ac_status); }; }; then
  5327.   ac_cv_type_off_t=yes
  5328. else
  5329.   echo "$as_me: failed program was:" >&5
  5330. sed 's/^/| /' conftest.$ac_ext >&5
  5331.  
  5332. ac_cv_type_off_t=no
  5333. fi
  5334. rm -f conftest.$ac_objext conftest.$ac_ext
  5335. fi
  5336. echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
  5337. echo "${ECHO_T}$ac_cv_type_off_t" >&6
  5338. if test $ac_cv_type_off_t = yes; then
  5339.   :
  5340. else
  5341.  
  5342. cat >>confdefs.h <<_ACEOF
  5343. #define off_t long
  5344. _ACEOF
  5345.  
  5346. fi
  5347.  
  5348. echo "$as_me:$LINENO: checking for size_t" >&5
  5349. echo $ECHO_N "checking for size_t... $ECHO_C" >&6
  5350. if test "${ac_cv_type_size_t+set}" = set; then
  5351.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5352. else
  5353.   cat >conftest.$ac_ext <<_ACEOF
  5354. #line $LINENO "configure"
  5355. /* confdefs.h.  */
  5356. _ACEOF
  5357. cat confdefs.h >>conftest.$ac_ext
  5358. cat >>conftest.$ac_ext <<_ACEOF
  5359. /* end confdefs.h.  */
  5360. $ac_includes_default
  5361. int
  5362. main ()
  5363. {
  5364. if ((size_t *) 0)
  5365.   return 0;
  5366. if (sizeof (size_t))
  5367.   return 0;
  5368.   ;
  5369.   return 0;
  5370. }
  5371. _ACEOF
  5372. rm -f conftest.$ac_objext
  5373. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  5374.   (eval $ac_compile) 2>&5
  5375.   ac_status=$?
  5376.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5377.   (exit $ac_status); } &&
  5378.          { ac_try='test -s conftest.$ac_objext'
  5379.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5380.   (eval $ac_try) 2>&5
  5381.   ac_status=$?
  5382.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5383.   (exit $ac_status); }; }; then
  5384.   ac_cv_type_size_t=yes
  5385. else
  5386.   echo "$as_me: failed program was:" >&5
  5387. sed 's/^/| /' conftest.$ac_ext >&5
  5388.  
  5389. ac_cv_type_size_t=no
  5390. fi
  5391. rm -f conftest.$ac_objext conftest.$ac_ext
  5392. fi
  5393. echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
  5394. echo "${ECHO_T}$ac_cv_type_size_t" >&6
  5395. if test $ac_cv_type_size_t = yes; then
  5396.   :
  5397. else
  5398.  
  5399. cat >>confdefs.h <<_ACEOF
  5400. #define size_t unsigned
  5401. _ACEOF
  5402.  
  5403. fi
  5404.  
  5405. # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  5406. # for constant arguments.  Useless!
  5407. echo "$as_me:$LINENO: checking for working alloca.h" >&5
  5408. echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
  5409. if test "${ac_cv_working_alloca_h+set}" = set; then
  5410.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5411. else
  5412.   cat >conftest.$ac_ext <<_ACEOF
  5413. #line $LINENO "configure"
  5414. /* confdefs.h.  */
  5415. _ACEOF
  5416. cat confdefs.h >>conftest.$ac_ext
  5417. cat >>conftest.$ac_ext <<_ACEOF
  5418. /* end confdefs.h.  */
  5419. #include <alloca.h>
  5420. int
  5421. main ()
  5422. {
  5423. char *p = (char *) alloca (2 * sizeof (int));
  5424.   ;
  5425.   return 0;
  5426. }
  5427. _ACEOF
  5428. rm -f conftest.$ac_objext conftest$ac_exeext
  5429. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5430.   (eval $ac_link) 2>&5
  5431.   ac_status=$?
  5432.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5433.   (exit $ac_status); } &&
  5434.          { ac_try='test -s conftest$ac_exeext'
  5435.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5436.   (eval $ac_try) 2>&5
  5437.   ac_status=$?
  5438.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5439.   (exit $ac_status); }; }; then
  5440.   ac_cv_working_alloca_h=yes
  5441. else
  5442.   echo "$as_me: failed program was:" >&5
  5443. sed 's/^/| /' conftest.$ac_ext >&5
  5444.  
  5445. ac_cv_working_alloca_h=no
  5446. fi
  5447. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  5448. fi
  5449. echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
  5450. echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
  5451. if test $ac_cv_working_alloca_h = yes; then
  5452.  
  5453. cat >>confdefs.h <<\_ACEOF
  5454. #define HAVE_ALLOCA_H 1
  5455. _ACEOF
  5456.  
  5457. fi
  5458.  
  5459. echo "$as_me:$LINENO: checking for alloca" >&5
  5460. echo $ECHO_N "checking for alloca... $ECHO_C" >&6
  5461. if test "${ac_cv_func_alloca_works+set}" = set; then
  5462.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5463. else
  5464.   cat >conftest.$ac_ext <<_ACEOF
  5465. #line $LINENO "configure"
  5466. /* confdefs.h.  */
  5467. _ACEOF
  5468. cat confdefs.h >>conftest.$ac_ext
  5469. cat >>conftest.$ac_ext <<_ACEOF
  5470. /* end confdefs.h.  */
  5471. #ifdef __GNUC__
  5472. # define alloca __builtin_alloca
  5473. #else
  5474. # ifdef _MSC_VER
  5475. #  include <malloc.h>
  5476. #  define alloca _alloca
  5477. # else
  5478. #  if HAVE_ALLOCA_H
  5479. #   include <alloca.h>
  5480. #  else
  5481. #   ifdef _AIX
  5482.  #pragma alloca
  5483. #   else
  5484. #    ifndef alloca /* predefined by HP cc +Olibcalls */
  5485. char *alloca ();
  5486. #    endif
  5487. #   endif
  5488. #  endif
  5489. # endif
  5490. #endif
  5491.  
  5492. int
  5493. main ()
  5494. {
  5495. char *p = (char *) alloca (1);
  5496.   ;
  5497.   return 0;
  5498. }
  5499. _ACEOF
  5500. rm -f conftest.$ac_objext conftest$ac_exeext
  5501. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5502.   (eval $ac_link) 2>&5
  5503.   ac_status=$?
  5504.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5505.   (exit $ac_status); } &&
  5506.          { ac_try='test -s conftest$ac_exeext'
  5507.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5508.   (eval $ac_try) 2>&5
  5509.   ac_status=$?
  5510.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5511.   (exit $ac_status); }; }; then
  5512.   ac_cv_func_alloca_works=yes
  5513. else
  5514.   echo "$as_me: failed program was:" >&5
  5515. sed 's/^/| /' conftest.$ac_ext >&5
  5516.  
  5517. ac_cv_func_alloca_works=no
  5518. fi
  5519. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  5520. fi
  5521. echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
  5522. echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
  5523.  
  5524. if test $ac_cv_func_alloca_works = yes; then
  5525.  
  5526. cat >>confdefs.h <<\_ACEOF
  5527. #define HAVE_ALLOCA 1
  5528. _ACEOF
  5529.  
  5530. else
  5531.   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  5532. # that cause trouble.  Some versions do not even contain alloca or
  5533. # contain a buggy version.  If you still want to use their alloca,
  5534. # use ar to extract alloca.o from them instead of compiling alloca.c.
  5535.  
  5536. ALLOCA=alloca.$ac_objext
  5537.  
  5538. cat >>confdefs.h <<\_ACEOF
  5539. #define C_ALLOCA 1
  5540. _ACEOF
  5541.  
  5542.  
  5543. echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5
  5544. echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
  5545. if test "${ac_cv_os_cray+set}" = set; then
  5546.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5547. else
  5548.   cat >conftest.$ac_ext <<_ACEOF
  5549. #line $LINENO "configure"
  5550. /* confdefs.h.  */
  5551. _ACEOF
  5552. cat confdefs.h >>conftest.$ac_ext
  5553. cat >>conftest.$ac_ext <<_ACEOF
  5554. /* end confdefs.h.  */
  5555. #if defined(CRAY) && ! defined(CRAY2)
  5556. webecray
  5557. #else
  5558. wenotbecray
  5559. #endif
  5560.  
  5561. _ACEOF
  5562. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  5563.   $EGREP "webecray" >/dev/null 2>&1; then
  5564.   ac_cv_os_cray=yes
  5565. else
  5566.   ac_cv_os_cray=no
  5567. fi
  5568. rm -f conftest*
  5569.  
  5570. fi
  5571. echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5
  5572. echo "${ECHO_T}$ac_cv_os_cray" >&6
  5573. if test $ac_cv_os_cray = yes; then
  5574.   for ac_func in _getb67 GETB67 getb67; do
  5575.     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  5576. echo "$as_me:$LINENO: checking for $ac_func" >&5
  5577. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  5578. if eval "test \"\${$as_ac_var+set}\" = set"; then
  5579.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5580. else
  5581.   cat >conftest.$ac_ext <<_ACEOF
  5582. #line $LINENO "configure"
  5583. /* confdefs.h.  */
  5584. _ACEOF
  5585. cat confdefs.h >>conftest.$ac_ext
  5586. cat >>conftest.$ac_ext <<_ACEOF
  5587. /* end confdefs.h.  */
  5588. /* System header to define __stub macros and hopefully few prototypes,
  5589.     which can conflict with char $ac_func (); below.
  5590.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  5591.     <limits.h> exists even on freestanding compilers.  */
  5592. #ifdef __STDC__
  5593. # include <limits.h>
  5594. #else
  5595. # include <assert.h>
  5596. #endif
  5597. /* Override any gcc2 internal prototype to avoid an error.  */
  5598. #ifdef __cplusplus
  5599. extern "C"
  5600. {
  5601. #endif
  5602. /* We use char because int might match the return type of a gcc2
  5603.    builtin and then its argument prototype would still apply.  */
  5604. char $ac_func ();
  5605. /* The GNU C library defines this for functions which it implements
  5606.     to always fail with ENOSYS.  Some functions are actually named
  5607.     something starting with __ and the normal name is an alias.  */
  5608. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  5609. choke me
  5610. #else
  5611. char (*f) () = $ac_func;
  5612. #endif
  5613. #ifdef __cplusplus
  5614. }
  5615. #endif
  5616.  
  5617. int
  5618. main ()
  5619. {
  5620. return f != $ac_func;
  5621.   ;
  5622.   return 0;
  5623. }
  5624. _ACEOF
  5625. rm -f conftest.$ac_objext conftest$ac_exeext
  5626. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5627.   (eval $ac_link) 2>&5
  5628.   ac_status=$?
  5629.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5630.   (exit $ac_status); } &&
  5631.          { ac_try='test -s conftest$ac_exeext'
  5632.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5633.   (eval $ac_try) 2>&5
  5634.   ac_status=$?
  5635.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5636.   (exit $ac_status); }; }; then
  5637.   eval "$as_ac_var=yes"
  5638. else
  5639.   echo "$as_me: failed program was:" >&5
  5640. sed 's/^/| /' conftest.$ac_ext >&5
  5641.  
  5642. eval "$as_ac_var=no"
  5643. fi
  5644. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  5645. fi
  5646. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  5647. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  5648. if test `eval echo '${'$as_ac_var'}'` = yes; then
  5649.  
  5650. cat >>confdefs.h <<_ACEOF
  5651. #define CRAY_STACKSEG_END $ac_func
  5652. _ACEOF
  5653.  
  5654.     break
  5655. fi
  5656.  
  5657.   done
  5658. fi
  5659.  
  5660. echo "$as_me:$LINENO: checking stack direction for C alloca" >&5
  5661. echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
  5662. if test "${ac_cv_c_stack_direction+set}" = set; then
  5663.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5664. else
  5665.   if test "$cross_compiling" = yes; then
  5666.   ac_cv_c_stack_direction=0
  5667. else
  5668.   cat >conftest.$ac_ext <<_ACEOF
  5669. #line $LINENO "configure"
  5670. /* confdefs.h.  */
  5671. _ACEOF
  5672. cat confdefs.h >>conftest.$ac_ext
  5673. cat >>conftest.$ac_ext <<_ACEOF
  5674. /* end confdefs.h.  */
  5675. int
  5676. find_stack_direction ()
  5677. {
  5678.   static char *addr = 0;
  5679.   auto char dummy;
  5680.   if (addr == 0)
  5681.     {
  5682.       addr = &dummy;
  5683.       return find_stack_direction ();
  5684.     }
  5685.   else
  5686.     return (&dummy > addr) ? 1 : -1;
  5687. }
  5688.  
  5689. int
  5690. main ()
  5691. {
  5692.   exit (find_stack_direction () < 0);
  5693. }
  5694. _ACEOF
  5695. rm -f conftest$ac_exeext
  5696. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5697.   (eval $ac_link) 2>&5
  5698.   ac_status=$?
  5699.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5700.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  5701.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5702.   (eval $ac_try) 2>&5
  5703.   ac_status=$?
  5704.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5705.   (exit $ac_status); }; }; then
  5706.   ac_cv_c_stack_direction=1
  5707. else
  5708.   echo "$as_me: program exited with status $ac_status" >&5
  5709. echo "$as_me: failed program was:" >&5
  5710. sed 's/^/| /' conftest.$ac_ext >&5
  5711.  
  5712. ( exit $ac_status )
  5713. ac_cv_c_stack_direction=-1
  5714. fi
  5715. rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  5716. fi
  5717. fi
  5718. echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
  5719. echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
  5720.  
  5721. cat >>confdefs.h <<_ACEOF
  5722. #define STACK_DIRECTION $ac_cv_c_stack_direction
  5723. _ACEOF
  5724.  
  5725.  
  5726. fi
  5727.  
  5728.  
  5729.  
  5730. for ac_header in stdlib.h unistd.h
  5731. do
  5732. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  5733. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  5734.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  5735. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  5736. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  5737.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5738. fi
  5739. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  5740. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  5741. else
  5742.   # Is the header compilable?
  5743. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  5744. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  5745. cat >conftest.$ac_ext <<_ACEOF
  5746. #line $LINENO "configure"
  5747. /* confdefs.h.  */
  5748. _ACEOF
  5749. cat confdefs.h >>conftest.$ac_ext
  5750. cat >>conftest.$ac_ext <<_ACEOF
  5751. /* end confdefs.h.  */
  5752. $ac_includes_default
  5753. #include <$ac_header>
  5754. _ACEOF
  5755. rm -f conftest.$ac_objext
  5756. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  5757.   (eval $ac_compile) 2>&5
  5758.   ac_status=$?
  5759.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5760.   (exit $ac_status); } &&
  5761.          { ac_try='test -s conftest.$ac_objext'
  5762.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5763.   (eval $ac_try) 2>&5
  5764.   ac_status=$?
  5765.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5766.   (exit $ac_status); }; }; then
  5767.   ac_header_compiler=yes
  5768. else
  5769.   echo "$as_me: failed program was:" >&5
  5770. sed 's/^/| /' conftest.$ac_ext >&5
  5771.  
  5772. ac_header_compiler=no
  5773. fi
  5774. rm -f conftest.$ac_objext conftest.$ac_ext
  5775. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  5776. echo "${ECHO_T}$ac_header_compiler" >&6
  5777.  
  5778. # Is the header present?
  5779. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  5780. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  5781. cat >conftest.$ac_ext <<_ACEOF
  5782. #line $LINENO "configure"
  5783. /* confdefs.h.  */
  5784. _ACEOF
  5785. cat confdefs.h >>conftest.$ac_ext
  5786. cat >>conftest.$ac_ext <<_ACEOF
  5787. /* end confdefs.h.  */
  5788. #include <$ac_header>
  5789. _ACEOF
  5790. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  5791.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  5792.   ac_status=$?
  5793.   grep -v '^ *+' conftest.er1 >conftest.err
  5794.   rm -f conftest.er1
  5795.   cat conftest.err >&5
  5796.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5797.   (exit $ac_status); } >/dev/null; then
  5798.   if test -s conftest.err; then
  5799.     ac_cpp_err=$ac_c_preproc_warn_flag
  5800.   else
  5801.     ac_cpp_err=
  5802.   fi
  5803. else
  5804.   ac_cpp_err=yes
  5805. fi
  5806. if test -z "$ac_cpp_err"; then
  5807.   ac_header_preproc=yes
  5808. else
  5809.   echo "$as_me: failed program was:" >&5
  5810. sed 's/^/| /' conftest.$ac_ext >&5
  5811.  
  5812.   ac_header_preproc=no
  5813. fi
  5814. rm -f conftest.err conftest.$ac_ext
  5815. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  5816. echo "${ECHO_T}$ac_header_preproc" >&6
  5817.  
  5818. # So?  What about this header?
  5819. case $ac_header_compiler:$ac_header_preproc in
  5820.   yes:no )
  5821.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  5822. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  5823.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  5824. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  5825.     (
  5826.       cat <<\_ASBOX
  5827. ## ------------------------------------ ##
  5828. ## Report this to bug-autoconf@gnu.org. ##
  5829. ## ------------------------------------ ##
  5830. _ASBOX
  5831.     ) |
  5832.       sed "s/^/$as_me: WARNING:     /" >&2
  5833.     ;;
  5834.   no:yes )
  5835.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  5836. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  5837.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  5838. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  5839.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  5840. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  5841.     (
  5842.       cat <<\_ASBOX
  5843. ## ------------------------------------ ##
  5844. ## Report this to bug-autoconf@gnu.org. ##
  5845. ## ------------------------------------ ##
  5846. _ASBOX
  5847.     ) |
  5848.       sed "s/^/$as_me: WARNING:     /" >&2
  5849.     ;;
  5850. esac
  5851. echo "$as_me:$LINENO: checking for $ac_header" >&5
  5852. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  5853. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  5854.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5855. else
  5856.   eval "$as_ac_Header=$ac_header_preproc"
  5857. fi
  5858. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  5859. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  5860.  
  5861. fi
  5862. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  5863.   cat >>confdefs.h <<_ACEOF
  5864. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  5865. _ACEOF
  5866.  
  5867. fi
  5868.  
  5869. done
  5870.  
  5871.  
  5872. for ac_func in getpagesize
  5873. do
  5874. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  5875. echo "$as_me:$LINENO: checking for $ac_func" >&5
  5876. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  5877. if eval "test \"\${$as_ac_var+set}\" = set"; then
  5878.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5879. else
  5880.   cat >conftest.$ac_ext <<_ACEOF
  5881. #line $LINENO "configure"
  5882. /* confdefs.h.  */
  5883. _ACEOF
  5884. cat confdefs.h >>conftest.$ac_ext
  5885. cat >>conftest.$ac_ext <<_ACEOF
  5886. /* end confdefs.h.  */
  5887. /* System header to define __stub macros and hopefully few prototypes,
  5888.     which can conflict with char $ac_func (); below.
  5889.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  5890.     <limits.h> exists even on freestanding compilers.  */
  5891. #ifdef __STDC__
  5892. # include <limits.h>
  5893. #else
  5894. # include <assert.h>
  5895. #endif
  5896. /* Override any gcc2 internal prototype to avoid an error.  */
  5897. #ifdef __cplusplus
  5898. extern "C"
  5899. {
  5900. #endif
  5901. /* We use char because int might match the return type of a gcc2
  5902.    builtin and then its argument prototype would still apply.  */
  5903. char $ac_func ();
  5904. /* The GNU C library defines this for functions which it implements
  5905.     to always fail with ENOSYS.  Some functions are actually named
  5906.     something starting with __ and the normal name is an alias.  */
  5907. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  5908. choke me
  5909. #else
  5910. char (*f) () = $ac_func;
  5911. #endif
  5912. #ifdef __cplusplus
  5913. }
  5914. #endif
  5915.  
  5916. int
  5917. main ()
  5918. {
  5919. return f != $ac_func;
  5920.   ;
  5921.   return 0;
  5922. }
  5923. _ACEOF
  5924. rm -f conftest.$ac_objext conftest$ac_exeext
  5925. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  5926.   (eval $ac_link) 2>&5
  5927.   ac_status=$?
  5928.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5929.   (exit $ac_status); } &&
  5930.          { ac_try='test -s conftest$ac_exeext'
  5931.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  5932.   (eval $ac_try) 2>&5
  5933.   ac_status=$?
  5934.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5935.   (exit $ac_status); }; }; then
  5936.   eval "$as_ac_var=yes"
  5937. else
  5938.   echo "$as_me: failed program was:" >&5
  5939. sed 's/^/| /' conftest.$ac_ext >&5
  5940.  
  5941. eval "$as_ac_var=no"
  5942. fi
  5943. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  5944. fi
  5945. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  5946. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  5947. if test `eval echo '${'$as_ac_var'}'` = yes; then
  5948.   cat >>confdefs.h <<_ACEOF
  5949. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  5950. _ACEOF
  5951.  
  5952. fi
  5953. done
  5954.  
  5955. echo "$as_me:$LINENO: checking for working mmap" >&5
  5956. echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
  5957. if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
  5958.   echo $ECHO_N "(cached) $ECHO_C" >&6
  5959. else
  5960.   if test "$cross_compiling" = yes; then
  5961.   ac_cv_func_mmap_fixed_mapped=no
  5962. else
  5963.   cat >conftest.$ac_ext <<_ACEOF
  5964. #line $LINENO "configure"
  5965. /* confdefs.h.  */
  5966. _ACEOF
  5967. cat confdefs.h >>conftest.$ac_ext
  5968. cat >>conftest.$ac_ext <<_ACEOF
  5969. /* end confdefs.h.  */
  5970. $ac_includes_default
  5971. /* malloc might have been renamed as rpl_malloc. */
  5972. #undef malloc
  5973.  
  5974. /* Thanks to Mike Haertel and Jim Avera for this test.
  5975.    Here is a matrix of mmap possibilities:
  5976.     mmap private not fixed
  5977.     mmap private fixed at somewhere currently unmapped
  5978.     mmap private fixed at somewhere already mapped
  5979.     mmap shared not fixed
  5980.     mmap shared fixed at somewhere currently unmapped
  5981.     mmap shared fixed at somewhere already mapped
  5982.    For private mappings, we should verify that changes cannot be read()
  5983.    back from the file, nor mmap's back from the file at a different
  5984.    address.  (There have been systems where private was not correctly
  5985.    implemented like the infamous i386 svr4.0, and systems where the
  5986.    VM page cache was not coherent with the file system buffer cache
  5987.    like early versions of FreeBSD and possibly contemporary NetBSD.)
  5988.    For shared mappings, we should conversely verify that changes get
  5989.    propagated back to all the places they're supposed to be.
  5990.  
  5991.    Grep wants private fixed already mapped.
  5992.    The main things grep needs to know about mmap are:
  5993.    * does it exist and is it safe to write into the mmap'd area
  5994.    * how to use it (BSD variants)  */
  5995.  
  5996. #include <fcntl.h>
  5997. #include <sys/mman.h>
  5998.  
  5999. #if !STDC_HEADERS && !HAVE_STDLIB_H
  6000. char *malloc ();
  6001. #endif
  6002.  
  6003. /* This mess was copied from the GNU getpagesize.h.  */
  6004. #if !HAVE_GETPAGESIZE
  6005. /* Assume that all systems that can run configure have sys/param.h.  */
  6006. # if !HAVE_SYS_PARAM_H
  6007. #  define HAVE_SYS_PARAM_H 1
  6008. # endif
  6009.  
  6010. # ifdef _SC_PAGESIZE
  6011. #  define getpagesize() sysconf(_SC_PAGESIZE)
  6012. # else /* no _SC_PAGESIZE */
  6013. #  if HAVE_SYS_PARAM_H
  6014. #   include <sys/param.h>
  6015. #   ifdef EXEC_PAGESIZE
  6016. #    define getpagesize() EXEC_PAGESIZE
  6017. #   else /* no EXEC_PAGESIZE */
  6018. #    ifdef NBPG
  6019. #     define getpagesize() NBPG * CLSIZE
  6020. #     ifndef CLSIZE
  6021. #      define CLSIZE 1
  6022. #     endif /* no CLSIZE */
  6023. #    else /* no NBPG */
  6024. #     ifdef NBPC
  6025. #      define getpagesize() NBPC
  6026. #     else /* no NBPC */
  6027. #      ifdef PAGESIZE
  6028. #       define getpagesize() PAGESIZE
  6029. #      endif /* PAGESIZE */
  6030. #     endif /* no NBPC */
  6031. #    endif /* no NBPG */
  6032. #   endif /* no EXEC_PAGESIZE */
  6033. #  else /* no HAVE_SYS_PARAM_H */
  6034. #   define getpagesize() 8192    /* punt totally */
  6035. #  endif /* no HAVE_SYS_PARAM_H */
  6036. # endif /* no _SC_PAGESIZE */
  6037.  
  6038. #endif /* no HAVE_GETPAGESIZE */
  6039.  
  6040. int
  6041. main ()
  6042. {
  6043.   char *data, *data2, *data3;
  6044.   int i, pagesize;
  6045.   int fd;
  6046.  
  6047.   pagesize = getpagesize ();
  6048.  
  6049.   /* First, make a file with some known garbage in it. */
  6050.   data = (char *) malloc (pagesize);
  6051.   if (!data)
  6052.     exit (1);
  6053.   for (i = 0; i < pagesize; ++i)
  6054.     *(data + i) = rand ();
  6055.   umask (0);
  6056.   fd = creat ("conftest.mmap", 0600);
  6057.   if (fd < 0)
  6058.     exit (1);
  6059.   if (write (fd, data, pagesize) != pagesize)
  6060.     exit (1);
  6061.   close (fd);
  6062.  
  6063.   /* Next, try to mmap the file at a fixed address which already has
  6064.      something else allocated at it.  If we can, also make sure that
  6065.      we see the same garbage.  */
  6066.   fd = open ("conftest.mmap", O_RDWR);
  6067.   if (fd < 0)
  6068.     exit (1);
  6069.   data2 = (char *) malloc (2 * pagesize);
  6070.   if (!data2)
  6071.     exit (1);
  6072.   data2 += (pagesize - ((int) data2 & (pagesize - 1))) & (pagesize - 1);
  6073.   if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
  6074.                      MAP_PRIVATE | MAP_FIXED, fd, 0L))
  6075.     exit (1);
  6076.   for (i = 0; i < pagesize; ++i)
  6077.     if (*(data + i) != *(data2 + i))
  6078.       exit (1);
  6079.  
  6080.   /* Finally, make sure that changes to the mapped area do not
  6081.      percolate back to the file as seen by read().  (This is a bug on
  6082.      some variants of i386 svr4.0.)  */
  6083.   for (i = 0; i < pagesize; ++i)
  6084.     *(data2 + i) = *(data2 + i) + 1;
  6085.   data3 = (char *) malloc (pagesize);
  6086.   if (!data3)
  6087.     exit (1);
  6088.   if (read (fd, data3, pagesize) != pagesize)
  6089.     exit (1);
  6090.   for (i = 0; i < pagesize; ++i)
  6091.     if (*(data + i) != *(data3 + i))
  6092.       exit (1);
  6093.   close (fd);
  6094.   exit (0);
  6095. }
  6096. _ACEOF
  6097. rm -f conftest$ac_exeext
  6098. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  6099.   (eval $ac_link) 2>&5
  6100.   ac_status=$?
  6101.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6102.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  6103.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6104.   (eval $ac_try) 2>&5
  6105.   ac_status=$?
  6106.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6107.   (exit $ac_status); }; }; then
  6108.   ac_cv_func_mmap_fixed_mapped=yes
  6109. else
  6110.   echo "$as_me: program exited with status $ac_status" >&5
  6111. echo "$as_me: failed program was:" >&5
  6112. sed 's/^/| /' conftest.$ac_ext >&5
  6113.  
  6114. ( exit $ac_status )
  6115. ac_cv_func_mmap_fixed_mapped=no
  6116. fi
  6117. rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  6118. fi
  6119. fi
  6120. echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5
  6121. echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
  6122. if test $ac_cv_func_mmap_fixed_mapped = yes; then
  6123.  
  6124. cat >>confdefs.h <<\_ACEOF
  6125. #define HAVE_MMAP 1
  6126. _ACEOF
  6127.  
  6128. fi
  6129. rm -f conftest.mmap
  6130.  
  6131.  
  6132.     echo "$as_me:$LINENO: checking whether we are using the GNU C Library 2.1 or newer" >&5
  6133. echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6
  6134. if test "${ac_cv_gnu_library_2_1+set}" = set; then
  6135.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6136. else
  6137.   cat >conftest.$ac_ext <<_ACEOF
  6138. #line $LINENO "configure"
  6139. /* confdefs.h.  */
  6140. _ACEOF
  6141. cat confdefs.h >>conftest.$ac_ext
  6142. cat >>conftest.$ac_ext <<_ACEOF
  6143. /* end confdefs.h.  */
  6144.  
  6145. #include <features.h>
  6146. #ifdef __GNU_LIBRARY__
  6147.  #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
  6148.   Lucky GNU user
  6149.  #endif
  6150. #endif
  6151.  
  6152. _ACEOF
  6153. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  6154.   $EGREP "Lucky GNU user" >/dev/null 2>&1; then
  6155.   ac_cv_gnu_library_2_1=yes
  6156. else
  6157.   ac_cv_gnu_library_2_1=no
  6158. fi
  6159. rm -f conftest*
  6160.  
  6161.  
  6162.  
  6163. fi
  6164. echo "$as_me:$LINENO: result: $ac_cv_gnu_library_2_1" >&5
  6165. echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6
  6166.  
  6167.     GLIBC21="$ac_cv_gnu_library_2_1"
  6168.  
  6169.  
  6170.  
  6171.  
  6172.   echo "$as_me:$LINENO: checking whether integer division by zero raises SIGFPE" >&5
  6173. echo $ECHO_N "checking whether integer division by zero raises SIGFPE... $ECHO_C" >&6
  6174. if test "${gt_cv_int_divbyzero_sigfpe+set}" = set; then
  6175.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6176. else
  6177.  
  6178.       if test "$cross_compiling" = yes; then
  6179.  
  6180.           # Guess based on the CPU.
  6181.           case "$host_cpu" in
  6182.             alpha* | i3456786 | m68k | s390*)
  6183.               gt_cv_int_divbyzero_sigfpe="guessing yes";;
  6184.             *)
  6185.               gt_cv_int_divbyzero_sigfpe="guessing no";;
  6186.           esac
  6187.  
  6188. else
  6189.   cat >conftest.$ac_ext <<_ACEOF
  6190. #line $LINENO "configure"
  6191. /* confdefs.h.  */
  6192. _ACEOF
  6193. cat confdefs.h >>conftest.$ac_ext
  6194. cat >>conftest.$ac_ext <<_ACEOF
  6195. /* end confdefs.h.  */
  6196.  
  6197. #include <stdlib.h>
  6198. #include <signal.h>
  6199.  
  6200. static void
  6201. #ifdef __cplusplus
  6202. sigfpe_handler (int sig)
  6203. #else
  6204. sigfpe_handler (sig) int sig;
  6205. #endif
  6206. {
  6207.   /* Exit with code 0 if SIGFPE, with code 1 if any other signal.  */
  6208.   exit (sig != SIGFPE);
  6209. }
  6210.  
  6211. int x = 1;
  6212. int y = 0;
  6213. int z;
  6214. int nan;
  6215.  
  6216. int main ()
  6217. {
  6218.   signal (SIGFPE, sigfpe_handler);
  6219. /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP.  */
  6220. #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
  6221.   signal (SIGTRAP, sigfpe_handler);
  6222. #endif
  6223. /* Linux/SPARC yields signal SIGILL.  */
  6224. #if defined (__sparc__) && defined (__linux__)
  6225.   signal (SIGILL, sigfpe_handler);
  6226. #endif
  6227.  
  6228.   z = x / y;
  6229.   nan = y / y;
  6230.   exit (1);
  6231. }
  6232.  
  6233. _ACEOF
  6234. rm -f conftest$ac_exeext
  6235. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  6236.   (eval $ac_link) 2>&5
  6237.   ac_status=$?
  6238.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6239.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  6240.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6241.   (eval $ac_try) 2>&5
  6242.   ac_status=$?
  6243.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6244.   (exit $ac_status); }; }; then
  6245.   gt_cv_int_divbyzero_sigfpe=yes
  6246. else
  6247.   echo "$as_me: program exited with status $ac_status" >&5
  6248. echo "$as_me: failed program was:" >&5
  6249. sed 's/^/| /' conftest.$ac_ext >&5
  6250.  
  6251. ( exit $ac_status )
  6252. gt_cv_int_divbyzero_sigfpe=no
  6253. fi
  6254. rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  6255. fi
  6256.  
  6257. fi
  6258. echo "$as_me:$LINENO: result: $gt_cv_int_divbyzero_sigfpe" >&5
  6259. echo "${ECHO_T}$gt_cv_int_divbyzero_sigfpe" >&6
  6260.   case "$gt_cv_int_divbyzero_sigfpe" in
  6261.     *yes) value=1;;
  6262.     *) value=0;;
  6263.   esac
  6264.  
  6265. cat >>confdefs.h <<_ACEOF
  6266. #define INTDIV0_RAISES_SIGFPE $value
  6267. _ACEOF
  6268.  
  6269.  
  6270.  
  6271.   echo "$as_me:$LINENO: checking for inttypes.h" >&5
  6272. echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6
  6273. if test "${jm_ac_cv_header_inttypes_h+set}" = set; then
  6274.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6275. else
  6276.   cat >conftest.$ac_ext <<_ACEOF
  6277. #line $LINENO "configure"
  6278. /* confdefs.h.  */
  6279. _ACEOF
  6280. cat confdefs.h >>conftest.$ac_ext
  6281. cat >>conftest.$ac_ext <<_ACEOF
  6282. /* end confdefs.h.  */
  6283. #include <sys/types.h>
  6284. #include <inttypes.h>
  6285. int
  6286. main ()
  6287. {
  6288. uintmax_t i = (uintmax_t) -1;
  6289.   ;
  6290.   return 0;
  6291. }
  6292. _ACEOF
  6293. rm -f conftest.$ac_objext
  6294. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  6295.   (eval $ac_compile) 2>&5
  6296.   ac_status=$?
  6297.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6298.   (exit $ac_status); } &&
  6299.          { ac_try='test -s conftest.$ac_objext'
  6300.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6301.   (eval $ac_try) 2>&5
  6302.   ac_status=$?
  6303.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6304.   (exit $ac_status); }; }; then
  6305.   jm_ac_cv_header_inttypes_h=yes
  6306. else
  6307.   echo "$as_me: failed program was:" >&5
  6308. sed 's/^/| /' conftest.$ac_ext >&5
  6309.  
  6310. jm_ac_cv_header_inttypes_h=no
  6311. fi
  6312. rm -f conftest.$ac_objext conftest.$ac_ext
  6313. fi
  6314. echo "$as_me:$LINENO: result: $jm_ac_cv_header_inttypes_h" >&5
  6315. echo "${ECHO_T}$jm_ac_cv_header_inttypes_h" >&6
  6316.   if test $jm_ac_cv_header_inttypes_h = yes; then
  6317.  
  6318. cat >>confdefs.h <<_ACEOF
  6319. #define HAVE_INTTYPES_H_WITH_UINTMAX 1
  6320. _ACEOF
  6321.  
  6322.   fi
  6323.  
  6324.  
  6325.   echo "$as_me:$LINENO: checking for stdint.h" >&5
  6326. echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6
  6327. if test "${jm_ac_cv_header_stdint_h+set}" = set; then
  6328.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6329. else
  6330.   cat >conftest.$ac_ext <<_ACEOF
  6331. #line $LINENO "configure"
  6332. /* confdefs.h.  */
  6333. _ACEOF
  6334. cat confdefs.h >>conftest.$ac_ext
  6335. cat >>conftest.$ac_ext <<_ACEOF
  6336. /* end confdefs.h.  */
  6337. #include <sys/types.h>
  6338. #include <stdint.h>
  6339. int
  6340. main ()
  6341. {
  6342. uintmax_t i = (uintmax_t) -1;
  6343.   ;
  6344.   return 0;
  6345. }
  6346. _ACEOF
  6347. rm -f conftest.$ac_objext
  6348. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  6349.   (eval $ac_compile) 2>&5
  6350.   ac_status=$?
  6351.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6352.   (exit $ac_status); } &&
  6353.          { ac_try='test -s conftest.$ac_objext'
  6354.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6355.   (eval $ac_try) 2>&5
  6356.   ac_status=$?
  6357.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6358.   (exit $ac_status); }; }; then
  6359.   jm_ac_cv_header_stdint_h=yes
  6360. else
  6361.   echo "$as_me: failed program was:" >&5
  6362. sed 's/^/| /' conftest.$ac_ext >&5
  6363.  
  6364. jm_ac_cv_header_stdint_h=no
  6365. fi
  6366. rm -f conftest.$ac_objext conftest.$ac_ext
  6367. fi
  6368. echo "$as_me:$LINENO: result: $jm_ac_cv_header_stdint_h" >&5
  6369. echo "${ECHO_T}$jm_ac_cv_header_stdint_h" >&6
  6370.   if test $jm_ac_cv_header_stdint_h = yes; then
  6371.  
  6372. cat >>confdefs.h <<_ACEOF
  6373. #define HAVE_STDINT_H_WITH_UINTMAX 1
  6374. _ACEOF
  6375.  
  6376.   fi
  6377.  
  6378.  
  6379.   echo "$as_me:$LINENO: checking for unsigned long long" >&5
  6380. echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6
  6381. if test "${ac_cv_type_unsigned_long_long+set}" = set; then
  6382.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6383. else
  6384.   cat >conftest.$ac_ext <<_ACEOF
  6385. #line $LINENO "configure"
  6386. /* confdefs.h.  */
  6387. _ACEOF
  6388. cat confdefs.h >>conftest.$ac_ext
  6389. cat >>conftest.$ac_ext <<_ACEOF
  6390. /* end confdefs.h.  */
  6391. unsigned long long ull = 1; int i = 63;
  6392. int
  6393. main ()
  6394. {
  6395. unsigned long long ullmax = (unsigned long long) -1;
  6396.      return ull << i | ull >> i | ullmax / ull | ullmax % ull;
  6397.   ;
  6398.   return 0;
  6399. }
  6400. _ACEOF
  6401. rm -f conftest.$ac_objext conftest$ac_exeext
  6402. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  6403.   (eval $ac_link) 2>&5
  6404.   ac_status=$?
  6405.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6406.   (exit $ac_status); } &&
  6407.          { ac_try='test -s conftest$ac_exeext'
  6408.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6409.   (eval $ac_try) 2>&5
  6410.   ac_status=$?
  6411.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6412.   (exit $ac_status); }; }; then
  6413.   ac_cv_type_unsigned_long_long=yes
  6414. else
  6415.   echo "$as_me: failed program was:" >&5
  6416. sed 's/^/| /' conftest.$ac_ext >&5
  6417.  
  6418. ac_cv_type_unsigned_long_long=no
  6419. fi
  6420. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  6421. fi
  6422. echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5
  6423. echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6
  6424.   if test $ac_cv_type_unsigned_long_long = yes; then
  6425.  
  6426. cat >>confdefs.h <<\_ACEOF
  6427. #define HAVE_UNSIGNED_LONG_LONG 1
  6428. _ACEOF
  6429.  
  6430.   fi
  6431.  
  6432.  
  6433.  
  6434.  
  6435.   if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then
  6436.  
  6437.     test $ac_cv_type_unsigned_long_long = yes \
  6438.       && ac_type='unsigned long long' \
  6439.       || ac_type='unsigned long'
  6440.  
  6441. cat >>confdefs.h <<_ACEOF
  6442. #define uintmax_t $ac_type
  6443. _ACEOF
  6444.  
  6445.   fi
  6446.  
  6447.  
  6448.   echo "$as_me:$LINENO: checking for inttypes.h" >&5
  6449. echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6
  6450. if test "${gt_cv_header_inttypes_h+set}" = set; then
  6451.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6452. else
  6453.  
  6454.     cat >conftest.$ac_ext <<_ACEOF
  6455. #line $LINENO "configure"
  6456. /* confdefs.h.  */
  6457. _ACEOF
  6458. cat confdefs.h >>conftest.$ac_ext
  6459. cat >>conftest.$ac_ext <<_ACEOF
  6460. /* end confdefs.h.  */
  6461. #include <sys/types.h>
  6462. #include <inttypes.h>
  6463. int
  6464. main ()
  6465. {
  6466.  
  6467.   ;
  6468.   return 0;
  6469. }
  6470. _ACEOF
  6471. rm -f conftest.$ac_objext
  6472. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  6473.   (eval $ac_compile) 2>&5
  6474.   ac_status=$?
  6475.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6476.   (exit $ac_status); } &&
  6477.          { ac_try='test -s conftest.$ac_objext'
  6478.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6479.   (eval $ac_try) 2>&5
  6480.   ac_status=$?
  6481.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6482.   (exit $ac_status); }; }; then
  6483.   gt_cv_header_inttypes_h=yes
  6484. else
  6485.   echo "$as_me: failed program was:" >&5
  6486. sed 's/^/| /' conftest.$ac_ext >&5
  6487.  
  6488. gt_cv_header_inttypes_h=no
  6489. fi
  6490. rm -f conftest.$ac_objext conftest.$ac_ext
  6491.  
  6492. fi
  6493. echo "$as_me:$LINENO: result: $gt_cv_header_inttypes_h" >&5
  6494. echo "${ECHO_T}$gt_cv_header_inttypes_h" >&6
  6495.   if test $gt_cv_header_inttypes_h = yes; then
  6496.  
  6497. cat >>confdefs.h <<_ACEOF
  6498. #define HAVE_INTTYPES_H 1
  6499. _ACEOF
  6500.  
  6501.   fi
  6502.  
  6503.  
  6504.  
  6505.   if test $gt_cv_header_inttypes_h = yes; then
  6506.     echo "$as_me:$LINENO: checking whether the inttypes.h PRIxNN macros are broken" >&5
  6507. echo $ECHO_N "checking whether the inttypes.h PRIxNN macros are broken... $ECHO_C" >&6
  6508. if test "${gt_cv_inttypes_pri_broken+set}" = set; then
  6509.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6510. else
  6511.  
  6512.         cat >conftest.$ac_ext <<_ACEOF
  6513. #line $LINENO "configure"
  6514. /* confdefs.h.  */
  6515. _ACEOF
  6516. cat confdefs.h >>conftest.$ac_ext
  6517. cat >>conftest.$ac_ext <<_ACEOF
  6518. /* end confdefs.h.  */
  6519. #include <inttypes.h>
  6520. #ifdef PRId32
  6521. char *p = PRId32;
  6522. #endif
  6523.  
  6524. int
  6525. main ()
  6526. {
  6527.  
  6528.   ;
  6529.   return 0;
  6530. }
  6531. _ACEOF
  6532. rm -f conftest.$ac_objext
  6533. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  6534.   (eval $ac_compile) 2>&5
  6535.   ac_status=$?
  6536.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6537.   (exit $ac_status); } &&
  6538.          { ac_try='test -s conftest.$ac_objext'
  6539.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  6540.   (eval $ac_try) 2>&5
  6541.   ac_status=$?
  6542.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6543.   (exit $ac_status); }; }; then
  6544.   gt_cv_inttypes_pri_broken=no
  6545. else
  6546.   echo "$as_me: failed program was:" >&5
  6547. sed 's/^/| /' conftest.$ac_ext >&5
  6548.  
  6549. gt_cv_inttypes_pri_broken=yes
  6550. fi
  6551. rm -f conftest.$ac_objext conftest.$ac_ext
  6552.  
  6553. fi
  6554. echo "$as_me:$LINENO: result: $gt_cv_inttypes_pri_broken" >&5
  6555. echo "${ECHO_T}$gt_cv_inttypes_pri_broken" >&6
  6556.   fi
  6557.   if test "$gt_cv_inttypes_pri_broken" = yes; then
  6558.  
  6559. cat >>confdefs.h <<_ACEOF
  6560. #define PRI_MACROS_BROKEN 1
  6561. _ACEOF
  6562.  
  6563.   fi
  6564.  
  6565.  
  6566.       if test "X$prefix" = "XNONE"; then
  6567.     acl_final_prefix="$ac_default_prefix"
  6568.   else
  6569.     acl_final_prefix="$prefix"
  6570.   fi
  6571.   if test "X$exec_prefix" = "XNONE"; then
  6572.     acl_final_exec_prefix='${prefix}'
  6573.   else
  6574.     acl_final_exec_prefix="$exec_prefix"
  6575.   fi
  6576.   acl_save_prefix="$prefix"
  6577.   prefix="$acl_final_prefix"
  6578.   eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
  6579.   prefix="$acl_save_prefix"
  6580.  
  6581.  
  6582. # Check whether --with-gnu-ld or --without-gnu-ld was given.
  6583. if test "${with_gnu_ld+set}" = set; then
  6584.   withval="$with_gnu_ld"
  6585.   test "$withval" = no || with_gnu_ld=yes
  6586. else
  6587.   with_gnu_ld=no
  6588. fi;
  6589. ac_prog=ld
  6590. if test "$GCC" = yes; then
  6591.   # Check if gcc -print-prog-name=ld gives a path.
  6592.   echo "$as_me:$LINENO: checking for ld used by GCC" >&5
  6593. echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
  6594.   case $host in
  6595.   *-*-mingw*)
  6596.     # gcc leaves a trailing carriage return which upsets mingw
  6597.     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  6598.   *)
  6599.     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  6600.   esac
  6601.   case $ac_prog in
  6602.     # Accept absolute paths.
  6603.     [\\/]* | [A-Za-z]:[\\/]*)
  6604.       re_direlt='/[^/][^/]*/\.\./'
  6605.       # Canonicalize the path of ld
  6606.       ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
  6607.       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
  6608.     ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
  6609.       done
  6610.       test -z "$LD" && LD="$ac_prog"
  6611.       ;;
  6612.   "")
  6613.     # If it fails, then pretend we aren't using GCC.
  6614.     ac_prog=ld
  6615.     ;;
  6616.   *)
  6617.     # If it is relative, then search for the first ld in PATH.
  6618.     with_gnu_ld=unknown
  6619.     ;;
  6620.   esac
  6621. elif test "$with_gnu_ld" = yes; then
  6622.   echo "$as_me:$LINENO: checking for GNU ld" >&5
  6623. echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
  6624. else
  6625.   echo "$as_me:$LINENO: checking for non-GNU ld" >&5
  6626. echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
  6627. fi
  6628. if test "${acl_cv_path_LD+set}" = set; then
  6629.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6630. else
  6631.   if test -z "$LD"; then
  6632.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
  6633.   for ac_dir in $PATH; do
  6634.     test -z "$ac_dir" && ac_dir=.
  6635.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  6636.       acl_cv_path_LD="$ac_dir/$ac_prog"
  6637.       # Check to see if the program is GNU ld.  I'd rather use --version,
  6638.       # but apparently some GNU ld's only accept -v.
  6639.       # Break only if it was the GNU/non-GNU ld that we prefer.
  6640.       if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
  6641.     test "$with_gnu_ld" != no && break
  6642.       else
  6643.     test "$with_gnu_ld" != yes && break
  6644.       fi
  6645.     fi
  6646.   done
  6647.   IFS="$ac_save_ifs"
  6648. else
  6649.   acl_cv_path_LD="$LD" # Let the user override the test with a path.
  6650. fi
  6651. fi
  6652.  
  6653. LD="$acl_cv_path_LD"
  6654. if test -n "$LD"; then
  6655.   echo "$as_me:$LINENO: result: $LD" >&5
  6656. echo "${ECHO_T}$LD" >&6
  6657. else
  6658.   echo "$as_me:$LINENO: result: no" >&5
  6659. echo "${ECHO_T}no" >&6
  6660. fi
  6661. test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
  6662. echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
  6663.    { (exit 1); exit 1; }; }
  6664. echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
  6665. echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
  6666. if test "${acl_cv_prog_gnu_ld+set}" = set; then
  6667.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6668. else
  6669.   # I'd rather use --version here, but apparently some GNU ld's only accept -v.
  6670. if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
  6671.   acl_cv_prog_gnu_ld=yes
  6672. else
  6673.   acl_cv_prog_gnu_ld=no
  6674. fi
  6675. fi
  6676. echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5
  6677. echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6
  6678. with_gnu_ld=$acl_cv_prog_gnu_ld
  6679.  
  6680.  
  6681.  
  6682.                                                 echo "$as_me:$LINENO: checking for shared library run path origin" >&5
  6683. echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6
  6684. if test "${acl_cv_rpath+set}" = set; then
  6685.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6686. else
  6687.  
  6688.     CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
  6689.     ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
  6690.     . ./conftest.sh
  6691.     rm -f ./conftest.sh
  6692.     acl_cv_rpath=done
  6693.  
  6694. fi
  6695. echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5
  6696. echo "${ECHO_T}$acl_cv_rpath" >&6
  6697.   wl="$acl_cv_wl"
  6698.   libext="$acl_cv_libext"
  6699.   shlibext="$acl_cv_shlibext"
  6700.   hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
  6701.   hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
  6702.   hardcode_direct="$acl_cv_hardcode_direct"
  6703.   hardcode_minus_L="$acl_cv_hardcode_minus_L"
  6704.   sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec"
  6705.   sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec"
  6706.     # Check whether --enable-rpath or --disable-rpath was given.
  6707. if test "${enable_rpath+set}" = set; then
  6708.   enableval="$enable_rpath"
  6709.   :
  6710. else
  6711.   enable_rpath=yes
  6712. fi;
  6713.  
  6714.  
  6715.  
  6716.  
  6717.  
  6718.  
  6719.  
  6720.     use_additional=yes
  6721.  
  6722.   acl_save_prefix="$prefix"
  6723.   prefix="$acl_final_prefix"
  6724.   acl_save_exec_prefix="$exec_prefix"
  6725.   exec_prefix="$acl_final_exec_prefix"
  6726.  
  6727.     eval additional_includedir=\"$includedir\"
  6728.     eval additional_libdir=\"$libdir\"
  6729.  
  6730.   exec_prefix="$acl_save_exec_prefix"
  6731.   prefix="$acl_save_prefix"
  6732.  
  6733.  
  6734. # Check whether --with-libiconv-prefix or --without-libiconv-prefix was given.
  6735. if test "${with_libiconv_prefix+set}" = set; then
  6736.   withval="$with_libiconv_prefix"
  6737.  
  6738.     if test "X$withval" = "Xno"; then
  6739.       use_additional=no
  6740.     else
  6741.       if test "X$withval" = "X"; then
  6742.  
  6743.   acl_save_prefix="$prefix"
  6744.   prefix="$acl_final_prefix"
  6745.   acl_save_exec_prefix="$exec_prefix"
  6746.   exec_prefix="$acl_final_exec_prefix"
  6747.  
  6748.           eval additional_includedir=\"$includedir\"
  6749.           eval additional_libdir=\"$libdir\"
  6750.  
  6751.   exec_prefix="$acl_save_exec_prefix"
  6752.   prefix="$acl_save_prefix"
  6753.  
  6754.       else
  6755.         additional_includedir="$withval/include"
  6756.         additional_libdir="$withval/lib"
  6757.       fi
  6758.     fi
  6759.  
  6760. fi;
  6761.       LIBICONV=
  6762.   LTLIBICONV=
  6763.   INCICONV=
  6764.   rpathdirs=
  6765.   ltrpathdirs=
  6766.   names_already_handled=
  6767.   names_next_round='iconv '
  6768.   while test -n "$names_next_round"; do
  6769.     names_this_round="$names_next_round"
  6770.     names_next_round=
  6771.     for name in $names_this_round; do
  6772.       already_handled=
  6773.       for n in $names_already_handled; do
  6774.         if test "$n" = "$name"; then
  6775.           already_handled=yes
  6776.           break
  6777.         fi
  6778.       done
  6779.       if test -z "$already_handled"; then
  6780.         names_already_handled="$names_already_handled $name"
  6781.                         uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
  6782.         eval value=\"\$HAVE_LIB$uppername\"
  6783.         if test -n "$value"; then
  6784.           if test "$value" = yes; then
  6785.             eval value=\"\$LIB$uppername\"
  6786.             test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value"
  6787.             eval value=\"\$LTLIB$uppername\"
  6788.             test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value"
  6789.           else
  6790.                                     :
  6791.           fi
  6792.         else
  6793.                               found_dir=
  6794.           found_la=
  6795.           found_so=
  6796.           found_a=
  6797.           if test $use_additional = yes; then
  6798.             if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
  6799.               found_dir="$additional_libdir"
  6800.               found_so="$additional_libdir/lib$name.$shlibext"
  6801.               if test -f "$additional_libdir/lib$name.la"; then
  6802.                 found_la="$additional_libdir/lib$name.la"
  6803.               fi
  6804.             else
  6805.               if test -f "$additional_libdir/lib$name.$libext"; then
  6806.                 found_dir="$additional_libdir"
  6807.                 found_a="$additional_libdir/lib$name.$libext"
  6808.                 if test -f "$additional_libdir/lib$name.la"; then
  6809.                   found_la="$additional_libdir/lib$name.la"
  6810.                 fi
  6811.               fi
  6812.             fi
  6813.           fi
  6814.           if test "X$found_dir" = "X"; then
  6815.             for x in $LDFLAGS $LTLIBICONV; do
  6816.  
  6817.   acl_save_prefix="$prefix"
  6818.   prefix="$acl_final_prefix"
  6819.   acl_save_exec_prefix="$exec_prefix"
  6820.   exec_prefix="$acl_final_exec_prefix"
  6821.   eval x=\"$x\"
  6822.   exec_prefix="$acl_save_exec_prefix"
  6823.   prefix="$acl_save_prefix"
  6824.  
  6825.               case "$x" in
  6826.                 -L*)
  6827.                   dir=`echo "X$x" | sed -e 's/^X-L//'`
  6828.                   if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
  6829.                     found_dir="$dir"
  6830.                     found_so="$dir/lib$name.$shlibext"
  6831.                     if test -f "$dir/lib$name.la"; then
  6832.                       found_la="$dir/lib$name.la"
  6833.                     fi
  6834.                   else
  6835.                     if test -f "$dir/lib$name.$libext"; then
  6836.                       found_dir="$dir"
  6837.                       found_a="$dir/lib$name.$libext"
  6838.                       if test -f "$dir/lib$name.la"; then
  6839.                         found_la="$dir/lib$name.la"
  6840.                       fi
  6841.                     fi
  6842.                   fi
  6843.                   ;;
  6844.               esac
  6845.               if test "X$found_dir" != "X"; then
  6846.                 break
  6847.               fi
  6848.             done
  6849.           fi
  6850.           if test "X$found_dir" != "X"; then
  6851.                         LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name"
  6852.             if test "X$found_so" != "X"; then
  6853.                                                         if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
  6854.                                 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
  6855.               else
  6856.                                                                                 haveit=
  6857.                 for x in $ltrpathdirs; do
  6858.                   if test "X$x" = "X$found_dir"; then
  6859.                     haveit=yes
  6860.                     break
  6861.                   fi
  6862.                 done
  6863.                 if test -z "$haveit"; then
  6864.                   ltrpathdirs="$ltrpathdirs $found_dir"
  6865.                 fi
  6866.                                 if test "$hardcode_direct" = yes; then
  6867.                                                       LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
  6868.                 else
  6869.                   if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
  6870.                                                             LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
  6871.                                                             haveit=
  6872.                     for x in $rpathdirs; do
  6873.                       if test "X$x" = "X$found_dir"; then
  6874.                         haveit=yes
  6875.                         break
  6876.                       fi
  6877.                     done
  6878.                     if test -z "$haveit"; then
  6879.                       rpathdirs="$rpathdirs $found_dir"
  6880.                     fi
  6881.                   else
  6882.                                                                                 haveit=
  6883.                     for x in $LDFLAGS $LIBICONV; do
  6884.  
  6885.   acl_save_prefix="$prefix"
  6886.   prefix="$acl_final_prefix"
  6887.   acl_save_exec_prefix="$exec_prefix"
  6888.   exec_prefix="$acl_final_exec_prefix"
  6889.   eval x=\"$x\"
  6890.   exec_prefix="$acl_save_exec_prefix"
  6891.   prefix="$acl_save_prefix"
  6892.  
  6893.                       if test "X$x" = "X-L$found_dir"; then
  6894.                         haveit=yes
  6895.                         break
  6896.                       fi
  6897.                     done
  6898.                     if test -z "$haveit"; then
  6899.                       LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir"
  6900.                     fi
  6901.                     if test "$hardcode_minus_L" != no; then
  6902.                                                                                         LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
  6903.                     else
  6904.                                                                                                                                                                                 LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
  6905.                     fi
  6906.                   fi
  6907.                 fi
  6908.               fi
  6909.             else
  6910.               if test "X$found_a" != "X"; then
  6911.                                 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a"
  6912.               else
  6913.                                                 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name"
  6914.               fi
  6915.             fi
  6916.                         additional_includedir=
  6917.             case "$found_dir" in
  6918.               */lib | */lib/)
  6919.                 basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
  6920.                 additional_includedir="$basedir/include"
  6921.                 ;;
  6922.             esac
  6923.             if test "X$additional_includedir" != "X"; then
  6924.                                                                                                                 if test "X$additional_includedir" != "X/usr/include"; then
  6925.                 haveit=
  6926.                 if test "X$additional_includedir" = "X/usr/local/include"; then
  6927.                   if test -n "$GCC"; then
  6928.                     case $host_os in
  6929.                       linux*) haveit=yes;;
  6930.                     esac
  6931.                   fi
  6932.                 fi
  6933.                 if test -z "$haveit"; then
  6934.                   for x in $CPPFLAGS $INCICONV; do
  6935.  
  6936.   acl_save_prefix="$prefix"
  6937.   prefix="$acl_final_prefix"
  6938.   acl_save_exec_prefix="$exec_prefix"
  6939.   exec_prefix="$acl_final_exec_prefix"
  6940.   eval x=\"$x\"
  6941.   exec_prefix="$acl_save_exec_prefix"
  6942.   prefix="$acl_save_prefix"
  6943.  
  6944.                     if test "X$x" = "X-I$additional_includedir"; then
  6945.                       haveit=yes
  6946.                       break
  6947.                     fi
  6948.                   done
  6949.                   if test -z "$haveit"; then
  6950.                     if test -d "$additional_includedir"; then
  6951.                                             INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir"
  6952.                     fi
  6953.                   fi
  6954.                 fi
  6955.               fi
  6956.             fi
  6957.                         if test -n "$found_la"; then
  6958.                                                         save_libdir="$libdir"
  6959.               case "$found_la" in
  6960.                 */* | *\\*) . "$found_la" ;;
  6961.                 *) . "./$found_la" ;;
  6962.               esac
  6963.               libdir="$save_libdir"
  6964.                             for dep in $dependency_libs; do
  6965.                 case "$dep" in
  6966.                   -L*)
  6967.                     additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
  6968.                                                                                                                                                                 if test "X$additional_libdir" != "X/usr/lib"; then
  6969.                       haveit=
  6970.                       if test "X$additional_libdir" = "X/usr/local/lib"; then
  6971.                         if test -n "$GCC"; then
  6972.                           case $host_os in
  6973.                             linux*) haveit=yes;;
  6974.                           esac
  6975.                         fi
  6976.                       fi
  6977.                       if test -z "$haveit"; then
  6978.                         haveit=
  6979.                         for x in $LDFLAGS $LIBICONV; do
  6980.  
  6981.   acl_save_prefix="$prefix"
  6982.   prefix="$acl_final_prefix"
  6983.   acl_save_exec_prefix="$exec_prefix"
  6984.   exec_prefix="$acl_final_exec_prefix"
  6985.   eval x=\"$x\"
  6986.   exec_prefix="$acl_save_exec_prefix"
  6987.   prefix="$acl_save_prefix"
  6988.  
  6989.                           if test "X$x" = "X-L$additional_libdir"; then
  6990.                             haveit=yes
  6991.                             break
  6992.                           fi
  6993.                         done
  6994.                         if test -z "$haveit"; then
  6995.                           if test -d "$additional_libdir"; then
  6996.                                                         LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir"
  6997.                           fi
  6998.                         fi
  6999.                         haveit=
  7000.                         for x in $LDFLAGS $LTLIBICONV; do
  7001.  
  7002.   acl_save_prefix="$prefix"
  7003.   prefix="$acl_final_prefix"
  7004.   acl_save_exec_prefix="$exec_prefix"
  7005.   exec_prefix="$acl_final_exec_prefix"
  7006.   eval x=\"$x\"
  7007.   exec_prefix="$acl_save_exec_prefix"
  7008.   prefix="$acl_save_prefix"
  7009.  
  7010.                           if test "X$x" = "X-L$additional_libdir"; then
  7011.                             haveit=yes
  7012.                             break
  7013.                           fi
  7014.                         done
  7015.                         if test -z "$haveit"; then
  7016.                           if test -d "$additional_libdir"; then
  7017.                                                         LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir"
  7018.                           fi
  7019.                         fi
  7020.                       fi
  7021.                     fi
  7022.                     ;;
  7023.                   -R*)
  7024.                     dir=`echo "X$dep" | sed -e 's/^X-R//'`
  7025.                     if test "$enable_rpath" != no; then
  7026.                                                                   haveit=
  7027.                       for x in $rpathdirs; do
  7028.                         if test "X$x" = "X$dir"; then
  7029.                           haveit=yes
  7030.                           break
  7031.                         fi
  7032.                       done
  7033.                       if test -z "$haveit"; then
  7034.                         rpathdirs="$rpathdirs $dir"
  7035.                       fi
  7036.                                                                   haveit=
  7037.                       for x in $ltrpathdirs; do
  7038.                         if test "X$x" = "X$dir"; then
  7039.                           haveit=yes
  7040.                           break
  7041.                         fi
  7042.                       done
  7043.                       if test -z "$haveit"; then
  7044.                         ltrpathdirs="$ltrpathdirs $dir"
  7045.                       fi
  7046.                     fi
  7047.                     ;;
  7048.                   -l*)
  7049.                                         names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
  7050.                     ;;
  7051.                   *.la)
  7052.                                                                                 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
  7053.                     ;;
  7054.                   *)
  7055.                                         LIBICONV="${LIBICONV}${LIBICONV:+ }$dep"
  7056.                     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep"
  7057.                     ;;
  7058.                 esac
  7059.               done
  7060.             fi
  7061.           else
  7062.                                                             LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
  7063.             LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name"
  7064.           fi
  7065.         fi
  7066.       fi
  7067.     done
  7068.   done
  7069.   if test "X$rpathdirs" != "X"; then
  7070.     if test -n "$hardcode_libdir_separator"; then
  7071.                         alldirs=
  7072.       for found_dir in $rpathdirs; do
  7073.         alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
  7074.       done
  7075.             acl_save_libdir="$libdir"
  7076.       libdir="$alldirs"
  7077.       eval flag=\"$hardcode_libdir_flag_spec\"
  7078.       libdir="$acl_save_libdir"
  7079.       LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
  7080.     else
  7081.             for found_dir in $rpathdirs; do
  7082.         acl_save_libdir="$libdir"
  7083.         libdir="$found_dir"
  7084.         eval flag=\"$hardcode_libdir_flag_spec\"
  7085.         libdir="$acl_save_libdir"
  7086.         LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
  7087.       done
  7088.     fi
  7089.   fi
  7090.   if test "X$ltrpathdirs" != "X"; then
  7091.             for found_dir in $ltrpathdirs; do
  7092.       LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir"
  7093.     done
  7094.   fi
  7095.  
  7096.  
  7097.  
  7098.  
  7099.  
  7100.  
  7101.  
  7102.  
  7103.  
  7104.  
  7105.  
  7106.  
  7107.  
  7108.  
  7109. for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
  7110. stdlib.h string.h unistd.h sys/param.h
  7111. do
  7112. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  7113. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  7114.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  7115. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  7116. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  7117.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7118. fi
  7119. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  7120. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  7121. else
  7122.   # Is the header compilable?
  7123. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  7124. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  7125. cat >conftest.$ac_ext <<_ACEOF
  7126. #line $LINENO "configure"
  7127. /* confdefs.h.  */
  7128. _ACEOF
  7129. cat confdefs.h >>conftest.$ac_ext
  7130. cat >>conftest.$ac_ext <<_ACEOF
  7131. /* end confdefs.h.  */
  7132. $ac_includes_default
  7133. #include <$ac_header>
  7134. _ACEOF
  7135. rm -f conftest.$ac_objext
  7136. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  7137.   (eval $ac_compile) 2>&5
  7138.   ac_status=$?
  7139.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7140.   (exit $ac_status); } &&
  7141.          { ac_try='test -s conftest.$ac_objext'
  7142.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7143.   (eval $ac_try) 2>&5
  7144.   ac_status=$?
  7145.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7146.   (exit $ac_status); }; }; then
  7147.   ac_header_compiler=yes
  7148. else
  7149.   echo "$as_me: failed program was:" >&5
  7150. sed 's/^/| /' conftest.$ac_ext >&5
  7151.  
  7152. ac_header_compiler=no
  7153. fi
  7154. rm -f conftest.$ac_objext conftest.$ac_ext
  7155. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  7156. echo "${ECHO_T}$ac_header_compiler" >&6
  7157.  
  7158. # Is the header present?
  7159. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  7160. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  7161. cat >conftest.$ac_ext <<_ACEOF
  7162. #line $LINENO "configure"
  7163. /* confdefs.h.  */
  7164. _ACEOF
  7165. cat confdefs.h >>conftest.$ac_ext
  7166. cat >>conftest.$ac_ext <<_ACEOF
  7167. /* end confdefs.h.  */
  7168. #include <$ac_header>
  7169. _ACEOF
  7170. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  7171.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  7172.   ac_status=$?
  7173.   grep -v '^ *+' conftest.er1 >conftest.err
  7174.   rm -f conftest.er1
  7175.   cat conftest.err >&5
  7176.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7177.   (exit $ac_status); } >/dev/null; then
  7178.   if test -s conftest.err; then
  7179.     ac_cpp_err=$ac_c_preproc_warn_flag
  7180.   else
  7181.     ac_cpp_err=
  7182.   fi
  7183. else
  7184.   ac_cpp_err=yes
  7185. fi
  7186. if test -z "$ac_cpp_err"; then
  7187.   ac_header_preproc=yes
  7188. else
  7189.   echo "$as_me: failed program was:" >&5
  7190. sed 's/^/| /' conftest.$ac_ext >&5
  7191.  
  7192.   ac_header_preproc=no
  7193. fi
  7194. rm -f conftest.err conftest.$ac_ext
  7195. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  7196. echo "${ECHO_T}$ac_header_preproc" >&6
  7197.  
  7198. # So?  What about this header?
  7199. case $ac_header_compiler:$ac_header_preproc in
  7200.   yes:no )
  7201.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  7202. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  7203.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  7204. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  7205.     (
  7206.       cat <<\_ASBOX
  7207. ## ------------------------------------ ##
  7208. ## Report this to bug-autoconf@gnu.org. ##
  7209. ## ------------------------------------ ##
  7210. _ASBOX
  7211.     ) |
  7212.       sed "s/^/$as_me: WARNING:     /" >&2
  7213.     ;;
  7214.   no:yes )
  7215.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  7216. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  7217.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  7218. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  7219.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  7220. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  7221.     (
  7222.       cat <<\_ASBOX
  7223. ## ------------------------------------ ##
  7224. ## Report this to bug-autoconf@gnu.org. ##
  7225. ## ------------------------------------ ##
  7226. _ASBOX
  7227.     ) |
  7228.       sed "s/^/$as_me: WARNING:     /" >&2
  7229.     ;;
  7230. esac
  7231. echo "$as_me:$LINENO: checking for $ac_header" >&5
  7232. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  7233. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  7234.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7235. else
  7236.   eval "$as_ac_Header=$ac_header_preproc"
  7237. fi
  7238. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  7239. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  7240.  
  7241. fi
  7242. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  7243.   cat >>confdefs.h <<_ACEOF
  7244. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  7245. _ACEOF
  7246.  
  7247. fi
  7248.  
  7249. done
  7250.  
  7251.  
  7252.  
  7253.  
  7254.  
  7255.  
  7256.  
  7257.  
  7258.  
  7259.  
  7260.  
  7261.  
  7262.  
  7263.  
  7264.  
  7265.  
  7266.  
  7267.  
  7268.  
  7269.  
  7270.  
  7271.  
  7272. for ac_func in feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \
  7273. geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \
  7274. strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next
  7275. do
  7276. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  7277. echo "$as_me:$LINENO: checking for $ac_func" >&5
  7278. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  7279. if eval "test \"\${$as_ac_var+set}\" = set"; then
  7280.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7281. else
  7282.   cat >conftest.$ac_ext <<_ACEOF
  7283. #line $LINENO "configure"
  7284. /* confdefs.h.  */
  7285. _ACEOF
  7286. cat confdefs.h >>conftest.$ac_ext
  7287. cat >>conftest.$ac_ext <<_ACEOF
  7288. /* end confdefs.h.  */
  7289. /* System header to define __stub macros and hopefully few prototypes,
  7290.     which can conflict with char $ac_func (); below.
  7291.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  7292.     <limits.h> exists even on freestanding compilers.  */
  7293. #ifdef __STDC__
  7294. # include <limits.h>
  7295. #else
  7296. # include <assert.h>
  7297. #endif
  7298. /* Override any gcc2 internal prototype to avoid an error.  */
  7299. #ifdef __cplusplus
  7300. extern "C"
  7301. {
  7302. #endif
  7303. /* We use char because int might match the return type of a gcc2
  7304.    builtin and then its argument prototype would still apply.  */
  7305. char $ac_func ();
  7306. /* The GNU C library defines this for functions which it implements
  7307.     to always fail with ENOSYS.  Some functions are actually named
  7308.     something starting with __ and the normal name is an alias.  */
  7309. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  7310. choke me
  7311. #else
  7312. char (*f) () = $ac_func;
  7313. #endif
  7314. #ifdef __cplusplus
  7315. }
  7316. #endif
  7317.  
  7318. int
  7319. main ()
  7320. {
  7321. return f != $ac_func;
  7322.   ;
  7323.   return 0;
  7324. }
  7325. _ACEOF
  7326. rm -f conftest.$ac_objext conftest$ac_exeext
  7327. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7328.   (eval $ac_link) 2>&5
  7329.   ac_status=$?
  7330.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7331.   (exit $ac_status); } &&
  7332.          { ac_try='test -s conftest$ac_exeext'
  7333.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7334.   (eval $ac_try) 2>&5
  7335.   ac_status=$?
  7336.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7337.   (exit $ac_status); }; }; then
  7338.   eval "$as_ac_var=yes"
  7339. else
  7340.   echo "$as_me: failed program was:" >&5
  7341. sed 's/^/| /' conftest.$ac_ext >&5
  7342.  
  7343. eval "$as_ac_var=no"
  7344. fi
  7345. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7346. fi
  7347. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  7348. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  7349. if test `eval echo '${'$as_ac_var'}'` = yes; then
  7350.   cat >>confdefs.h <<_ACEOF
  7351. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  7352. _ACEOF
  7353.  
  7354. fi
  7355. done
  7356.  
  7357.  
  7358.  
  7359.  
  7360.  
  7361.  
  7362.  
  7363.           am_save_CPPFLAGS="$CPPFLAGS"
  7364.  
  7365.   for element in $INCICONV; do
  7366.     haveit=
  7367.     for x in $CPPFLAGS; do
  7368.  
  7369.   acl_save_prefix="$prefix"
  7370.   prefix="$acl_final_prefix"
  7371.   acl_save_exec_prefix="$exec_prefix"
  7372.   exec_prefix="$acl_final_exec_prefix"
  7373.   eval x=\"$x\"
  7374.   exec_prefix="$acl_save_exec_prefix"
  7375.   prefix="$acl_save_prefix"
  7376.  
  7377.       if test "X$x" = "X$element"; then
  7378.         haveit=yes
  7379.         break
  7380.       fi
  7381.     done
  7382.     if test -z "$haveit"; then
  7383.       CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
  7384.     fi
  7385.   done
  7386.  
  7387.  
  7388.   echo "$as_me:$LINENO: checking for iconv" >&5
  7389. echo $ECHO_N "checking for iconv... $ECHO_C" >&6
  7390. if test "${am_cv_func_iconv+set}" = set; then
  7391.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7392. else
  7393.  
  7394.     am_cv_func_iconv="no, consider installing GNU libiconv"
  7395.     am_cv_lib_iconv=no
  7396.     cat >conftest.$ac_ext <<_ACEOF
  7397. #line $LINENO "configure"
  7398. /* confdefs.h.  */
  7399. _ACEOF
  7400. cat confdefs.h >>conftest.$ac_ext
  7401. cat >>conftest.$ac_ext <<_ACEOF
  7402. /* end confdefs.h.  */
  7403. #include <stdlib.h>
  7404. #include <iconv.h>
  7405. int
  7406. main ()
  7407. {
  7408. iconv_t cd = iconv_open("","");
  7409.        iconv(cd,NULL,NULL,NULL,NULL);
  7410.        iconv_close(cd);
  7411.   ;
  7412.   return 0;
  7413. }
  7414. _ACEOF
  7415. rm -f conftest.$ac_objext conftest$ac_exeext
  7416. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7417.   (eval $ac_link) 2>&5
  7418.   ac_status=$?
  7419.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7420.   (exit $ac_status); } &&
  7421.          { ac_try='test -s conftest$ac_exeext'
  7422.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7423.   (eval $ac_try) 2>&5
  7424.   ac_status=$?
  7425.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7426.   (exit $ac_status); }; }; then
  7427.   am_cv_func_iconv=yes
  7428. else
  7429.   echo "$as_me: failed program was:" >&5
  7430. sed 's/^/| /' conftest.$ac_ext >&5
  7431.  
  7432. fi
  7433. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7434.     if test "$am_cv_func_iconv" != yes; then
  7435.       am_save_LIBS="$LIBS"
  7436.       LIBS="$LIBS $LIBICONV"
  7437.       cat >conftest.$ac_ext <<_ACEOF
  7438. #line $LINENO "configure"
  7439. /* confdefs.h.  */
  7440. _ACEOF
  7441. cat confdefs.h >>conftest.$ac_ext
  7442. cat >>conftest.$ac_ext <<_ACEOF
  7443. /* end confdefs.h.  */
  7444. #include <stdlib.h>
  7445. #include <iconv.h>
  7446. int
  7447. main ()
  7448. {
  7449. iconv_t cd = iconv_open("","");
  7450.          iconv(cd,NULL,NULL,NULL,NULL);
  7451.          iconv_close(cd);
  7452.   ;
  7453.   return 0;
  7454. }
  7455. _ACEOF
  7456. rm -f conftest.$ac_objext conftest$ac_exeext
  7457. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7458.   (eval $ac_link) 2>&5
  7459.   ac_status=$?
  7460.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7461.   (exit $ac_status); } &&
  7462.          { ac_try='test -s conftest$ac_exeext'
  7463.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7464.   (eval $ac_try) 2>&5
  7465.   ac_status=$?
  7466.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7467.   (exit $ac_status); }; }; then
  7468.   am_cv_lib_iconv=yes
  7469.         am_cv_func_iconv=yes
  7470. else
  7471.   echo "$as_me: failed program was:" >&5
  7472. sed 's/^/| /' conftest.$ac_ext >&5
  7473.  
  7474. fi
  7475. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7476.       LIBS="$am_save_LIBS"
  7477.     fi
  7478.  
  7479. fi
  7480. echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5
  7481. echo "${ECHO_T}$am_cv_func_iconv" >&6
  7482.   if test "$am_cv_func_iconv" = yes; then
  7483.  
  7484. cat >>confdefs.h <<\_ACEOF
  7485. #define HAVE_ICONV 1
  7486. _ACEOF
  7487.  
  7488.   fi
  7489.   if test "$am_cv_lib_iconv" = yes; then
  7490.     echo "$as_me:$LINENO: checking how to link with libiconv" >&5
  7491. echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6
  7492.     echo "$as_me:$LINENO: result: $LIBICONV" >&5
  7493. echo "${ECHO_T}$LIBICONV" >&6
  7494.   else
  7495.             CPPFLAGS="$am_save_CPPFLAGS"
  7496.     LIBICONV=
  7497.     LTLIBICONV=
  7498.   fi
  7499.  
  7500.  
  7501.  
  7502.   if test "$am_cv_func_iconv" = yes; then
  7503.     echo "$as_me:$LINENO: checking for iconv declaration" >&5
  7504. echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6
  7505.     if test "${am_cv_proto_iconv+set}" = set; then
  7506.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7507. else
  7508.  
  7509.       cat >conftest.$ac_ext <<_ACEOF
  7510. #line $LINENO "configure"
  7511. /* confdefs.h.  */
  7512. _ACEOF
  7513. cat confdefs.h >>conftest.$ac_ext
  7514. cat >>conftest.$ac_ext <<_ACEOF
  7515. /* end confdefs.h.  */
  7516.  
  7517. #include <stdlib.h>
  7518. #include <iconv.h>
  7519. extern
  7520. #ifdef __cplusplus
  7521. "C"
  7522. #endif
  7523. #if defined(__STDC__) || defined(__cplusplus)
  7524. size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
  7525. #else
  7526. size_t iconv();
  7527. #endif
  7528.  
  7529. int
  7530. main ()
  7531. {
  7532.  
  7533.   ;
  7534.   return 0;
  7535. }
  7536. _ACEOF
  7537. rm -f conftest.$ac_objext
  7538. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  7539.   (eval $ac_compile) 2>&5
  7540.   ac_status=$?
  7541.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7542.   (exit $ac_status); } &&
  7543.          { ac_try='test -s conftest.$ac_objext'
  7544.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7545.   (eval $ac_try) 2>&5
  7546.   ac_status=$?
  7547.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7548.   (exit $ac_status); }; }; then
  7549.   am_cv_proto_iconv_arg1=""
  7550. else
  7551.   echo "$as_me: failed program was:" >&5
  7552. sed 's/^/| /' conftest.$ac_ext >&5
  7553.  
  7554. am_cv_proto_iconv_arg1="const"
  7555. fi
  7556. rm -f conftest.$ac_objext conftest.$ac_ext
  7557.       am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"
  7558. fi
  7559.  
  7560.     am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
  7561.     echo "$as_me:$LINENO: result: ${ac_t:-
  7562.          }$am_cv_proto_iconv" >&5
  7563. echo "${ECHO_T}${ac_t:-
  7564.          }$am_cv_proto_iconv" >&6
  7565.  
  7566. cat >>confdefs.h <<_ACEOF
  7567. #define ICONV_CONST $am_cv_proto_iconv_arg1
  7568. _ACEOF
  7569.  
  7570.   fi
  7571.  
  7572.  
  7573.   echo "$as_me:$LINENO: checking for nl_langinfo and CODESET" >&5
  7574. echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
  7575. if test "${am_cv_langinfo_codeset+set}" = set; then
  7576.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7577. else
  7578.   cat >conftest.$ac_ext <<_ACEOF
  7579. #line $LINENO "configure"
  7580. /* confdefs.h.  */
  7581. _ACEOF
  7582. cat confdefs.h >>conftest.$ac_ext
  7583. cat >>conftest.$ac_ext <<_ACEOF
  7584. /* end confdefs.h.  */
  7585. #include <langinfo.h>
  7586. int
  7587. main ()
  7588. {
  7589. char* cs = nl_langinfo(CODESET);
  7590.   ;
  7591.   return 0;
  7592. }
  7593. _ACEOF
  7594. rm -f conftest.$ac_objext conftest$ac_exeext
  7595. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7596.   (eval $ac_link) 2>&5
  7597.   ac_status=$?
  7598.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7599.   (exit $ac_status); } &&
  7600.          { ac_try='test -s conftest$ac_exeext'
  7601.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7602.   (eval $ac_try) 2>&5
  7603.   ac_status=$?
  7604.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7605.   (exit $ac_status); }; }; then
  7606.   am_cv_langinfo_codeset=yes
  7607. else
  7608.   echo "$as_me: failed program was:" >&5
  7609. sed 's/^/| /' conftest.$ac_ext >&5
  7610.  
  7611. am_cv_langinfo_codeset=no
  7612. fi
  7613. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7614.  
  7615. fi
  7616. echo "$as_me:$LINENO: result: $am_cv_langinfo_codeset" >&5
  7617. echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
  7618.   if test $am_cv_langinfo_codeset = yes; then
  7619.  
  7620. cat >>confdefs.h <<\_ACEOF
  7621. #define HAVE_LANGINFO_CODESET 1
  7622. _ACEOF
  7623.  
  7624.   fi
  7625.  
  7626.   if test $ac_cv_header_locale_h = yes; then
  7627.  
  7628.   echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5
  7629. echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6
  7630. if test "${am_cv_val_LC_MESSAGES+set}" = set; then
  7631.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7632. else
  7633.   cat >conftest.$ac_ext <<_ACEOF
  7634. #line $LINENO "configure"
  7635. /* confdefs.h.  */
  7636. _ACEOF
  7637. cat confdefs.h >>conftest.$ac_ext
  7638. cat >>conftest.$ac_ext <<_ACEOF
  7639. /* end confdefs.h.  */
  7640. #include <locale.h>
  7641. int
  7642. main ()
  7643. {
  7644. return LC_MESSAGES
  7645.   ;
  7646.   return 0;
  7647. }
  7648. _ACEOF
  7649. rm -f conftest.$ac_objext conftest$ac_exeext
  7650. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7651.   (eval $ac_link) 2>&5
  7652.   ac_status=$?
  7653.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7654.   (exit $ac_status); } &&
  7655.          { ac_try='test -s conftest$ac_exeext'
  7656.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7657.   (eval $ac_try) 2>&5
  7658.   ac_status=$?
  7659.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7660.   (exit $ac_status); }; }; then
  7661.   am_cv_val_LC_MESSAGES=yes
  7662. else
  7663.   echo "$as_me: failed program was:" >&5
  7664. sed 's/^/| /' conftest.$ac_ext >&5
  7665.  
  7666. am_cv_val_LC_MESSAGES=no
  7667. fi
  7668. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7669. fi
  7670. echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
  7671. echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6
  7672.   if test $am_cv_val_LC_MESSAGES = yes; then
  7673.  
  7674. cat >>confdefs.h <<\_ACEOF
  7675. #define HAVE_LC_MESSAGES 1
  7676. _ACEOF
  7677.  
  7678.   fi
  7679.  
  7680.   fi
  7681.  
  7682.                       for ac_prog in bison
  7683. do
  7684.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  7685. set dummy $ac_prog; ac_word=$2
  7686. echo "$as_me:$LINENO: checking for $ac_word" >&5
  7687. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  7688. if test "${ac_cv_prog_INTLBISON+set}" = set; then
  7689.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7690. else
  7691.   if test -n "$INTLBISON"; then
  7692.   ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test.
  7693. else
  7694. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  7695. for as_dir in $PATH
  7696. do
  7697.   IFS=$as_save_IFS
  7698.   test -z "$as_dir" && as_dir=.
  7699.   for ac_exec_ext in '' $ac_executable_extensions; do
  7700.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  7701.     ac_cv_prog_INTLBISON="$ac_prog"
  7702.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  7703.     break 2
  7704.   fi
  7705. done
  7706. done
  7707.  
  7708. fi
  7709. fi
  7710. INTLBISON=$ac_cv_prog_INTLBISON
  7711. if test -n "$INTLBISON"; then
  7712.   echo "$as_me:$LINENO: result: $INTLBISON" >&5
  7713. echo "${ECHO_T}$INTLBISON" >&6
  7714. else
  7715.   echo "$as_me:$LINENO: result: no" >&5
  7716. echo "${ECHO_T}no" >&6
  7717. fi
  7718.  
  7719.   test -n "$INTLBISON" && break
  7720. done
  7721.  
  7722.   if test -z "$INTLBISON"; then
  7723.     ac_verc_fail=yes
  7724.   else
  7725.         echo "$as_me:$LINENO: checking version of bison" >&5
  7726. echo $ECHO_N "checking version of bison... $ECHO_C" >&6
  7727.     ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
  7728.     case $ac_prog_version in
  7729.       '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
  7730.       1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
  7731.          ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
  7732.       *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
  7733.     esac
  7734.     echo "$as_me:$LINENO: result: $ac_prog_version" >&5
  7735. echo "${ECHO_T}$ac_prog_version" >&6
  7736.   fi
  7737.   if test $ac_verc_fail = yes; then
  7738.     INTLBISON=:
  7739.   fi
  7740.  
  7741.  
  7742.  
  7743.  
  7744.  
  7745.  
  7746.  
  7747.  
  7748.  
  7749.  
  7750.  
  7751.  
  7752.  
  7753.  
  7754.  
  7755.   echo "$as_me:$LINENO: checking whether NLS is requested" >&5
  7756. echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
  7757.     # Check whether --enable-nls or --disable-nls was given.
  7758. if test "${enable_nls+set}" = set; then
  7759.   enableval="$enable_nls"
  7760.   USE_NLS=$enableval
  7761. else
  7762.   USE_NLS=yes
  7763. fi;
  7764.   echo "$as_me:$LINENO: result: $USE_NLS" >&5
  7765. echo "${ECHO_T}$USE_NLS" >&6
  7766.  
  7767.  
  7768.  
  7769.     BUILD_INCLUDED_LIBINTL=no
  7770.     USE_INCLUDED_LIBINTL=no
  7771.  
  7772.   LIBINTL=
  7773.   LTLIBINTL=
  7774.   POSUB=
  7775.  
  7776.     if test "$USE_NLS" = "yes"; then
  7777.     gt_use_preinstalled_gnugettext=no
  7778.  
  7779.       echo "$as_me:$LINENO: checking whether included gettext is requested" >&5
  7780. echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
  7781.  
  7782. # Check whether --with-included-gettext or --without-included-gettext was given.
  7783. if test "${with_included_gettext+set}" = set; then
  7784.   withval="$with_included_gettext"
  7785.   nls_cv_force_use_gnu_gettext=$withval
  7786. else
  7787.   nls_cv_force_use_gnu_gettext=no
  7788. fi;
  7789.       echo "$as_me:$LINENO: result: $nls_cv_force_use_gnu_gettext" >&5
  7790. echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6
  7791.  
  7792.       nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
  7793.       if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
  7794.  
  7795.  
  7796.  
  7797.  
  7798.  
  7799.  
  7800.         echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5
  7801. echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6
  7802. if test "${gt_cv_func_gnugettext1_libc+set}" = set; then
  7803.   echo $ECHO_N "(cached) $ECHO_C" >&6
  7804. else
  7805.   cat >conftest.$ac_ext <<_ACEOF
  7806. #line $LINENO "configure"
  7807. /* confdefs.h.  */
  7808. _ACEOF
  7809. cat confdefs.h >>conftest.$ac_ext
  7810. cat >>conftest.$ac_ext <<_ACEOF
  7811. /* end confdefs.h.  */
  7812. #include <libintl.h>
  7813. extern int _nl_msg_cat_cntr;
  7814. extern int *_nl_domain_bindings;
  7815. int
  7816. main ()
  7817. {
  7818. bindtextdomain ("", "");
  7819. return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
  7820.   ;
  7821.   return 0;
  7822. }
  7823. _ACEOF
  7824. rm -f conftest.$ac_objext conftest$ac_exeext
  7825. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  7826.   (eval $ac_link) 2>&5
  7827.   ac_status=$?
  7828.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7829.   (exit $ac_status); } &&
  7830.          { ac_try='test -s conftest$ac_exeext'
  7831.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  7832.   (eval $ac_try) 2>&5
  7833.   ac_status=$?
  7834.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  7835.   (exit $ac_status); }; }; then
  7836.   gt_cv_func_gnugettext1_libc=yes
  7837. else
  7838.   echo "$as_me: failed program was:" >&5
  7839. sed 's/^/| /' conftest.$ac_ext >&5
  7840.  
  7841. gt_cv_func_gnugettext1_libc=no
  7842. fi
  7843. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  7844. fi
  7845. echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libc" >&5
  7846. echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6
  7847.  
  7848.         if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
  7849.  
  7850.  
  7851.  
  7852.     use_additional=yes
  7853.  
  7854.   acl_save_prefix="$prefix"
  7855.   prefix="$acl_final_prefix"
  7856.   acl_save_exec_prefix="$exec_prefix"
  7857.   exec_prefix="$acl_final_exec_prefix"
  7858.  
  7859.     eval additional_includedir=\"$includedir\"
  7860.     eval additional_libdir=\"$libdir\"
  7861.  
  7862.   exec_prefix="$acl_save_exec_prefix"
  7863.   prefix="$acl_save_prefix"
  7864.  
  7865.  
  7866. # Check whether --with-libintl-prefix or --without-libintl-prefix was given.
  7867. if test "${with_libintl_prefix+set}" = set; then
  7868.   withval="$with_libintl_prefix"
  7869.  
  7870.     if test "X$withval" = "Xno"; then
  7871.       use_additional=no
  7872.     else
  7873.       if test "X$withval" = "X"; then
  7874.  
  7875.   acl_save_prefix="$prefix"
  7876.   prefix="$acl_final_prefix"
  7877.   acl_save_exec_prefix="$exec_prefix"
  7878.   exec_prefix="$acl_final_exec_prefix"
  7879.  
  7880.           eval additional_includedir=\"$includedir\"
  7881.           eval additional_libdir=\"$libdir\"
  7882.  
  7883.   exec_prefix="$acl_save_exec_prefix"
  7884.   prefix="$acl_save_prefix"
  7885.  
  7886.       else
  7887.         additional_includedir="$withval/include"
  7888.         additional_libdir="$withval/lib"
  7889.       fi
  7890.     fi
  7891.  
  7892. fi;
  7893.       LIBINTL=
  7894.   LTLIBINTL=
  7895.   INCINTL=
  7896.   rpathdirs=
  7897.   ltrpathdirs=
  7898.   names_already_handled=
  7899.   names_next_round='intl '
  7900.   while test -n "$names_next_round"; do
  7901.     names_this_round="$names_next_round"
  7902.     names_next_round=
  7903.     for name in $names_this_round; do
  7904.       already_handled=
  7905.       for n in $names_already_handled; do
  7906.         if test "$n" = "$name"; then
  7907.           already_handled=yes
  7908.           break
  7909.         fi
  7910.       done
  7911.       if test -z "$already_handled"; then
  7912.         names_already_handled="$names_already_handled $name"
  7913.                         uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
  7914.         eval value=\"\$HAVE_LIB$uppername\"
  7915.         if test -n "$value"; then
  7916.           if test "$value" = yes; then
  7917.             eval value=\"\$LIB$uppername\"
  7918.             test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value"
  7919.             eval value=\"\$LTLIB$uppername\"
  7920.             test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value"
  7921.           else
  7922.                                     :
  7923.           fi
  7924.         else
  7925.                               found_dir=
  7926.           found_la=
  7927.           found_so=
  7928.           found_a=
  7929.           if test $use_additional = yes; then
  7930.             if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
  7931.               found_dir="$additional_libdir"
  7932.               found_so="$additional_libdir/lib$name.$shlibext"
  7933.               if test -f "$additional_libdir/lib$name.la"; then
  7934.                 found_la="$additional_libdir/lib$name.la"
  7935.               fi
  7936.             else
  7937.               if test -f "$additional_libdir/lib$name.$libext"; then
  7938.                 found_dir="$additional_libdir"
  7939.                 found_a="$additional_libdir/lib$name.$libext"
  7940.                 if test -f "$additional_libdir/lib$name.la"; then
  7941.                   found_la="$additional_libdir/lib$name.la"
  7942.                 fi
  7943.               fi
  7944.             fi
  7945.           fi
  7946.           if test "X$found_dir" = "X"; then
  7947.             for x in $LDFLAGS $LTLIBINTL; do
  7948.  
  7949.   acl_save_prefix="$prefix"
  7950.   prefix="$acl_final_prefix"
  7951.   acl_save_exec_prefix="$exec_prefix"
  7952.   exec_prefix="$acl_final_exec_prefix"
  7953.   eval x=\"$x\"
  7954.   exec_prefix="$acl_save_exec_prefix"
  7955.   prefix="$acl_save_prefix"
  7956.  
  7957.               case "$x" in
  7958.                 -L*)
  7959.                   dir=`echo "X$x" | sed -e 's/^X-L//'`
  7960.                   if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
  7961.                     found_dir="$dir"
  7962.                     found_so="$dir/lib$name.$shlibext"
  7963.                     if test -f "$dir/lib$name.la"; then
  7964.                       found_la="$dir/lib$name.la"
  7965.                     fi
  7966.                   else
  7967.                     if test -f "$dir/lib$name.$libext"; then
  7968.                       found_dir="$dir"
  7969.                       found_a="$dir/lib$name.$libext"
  7970.                       if test -f "$dir/lib$name.la"; then
  7971.                         found_la="$dir/lib$name.la"
  7972.                       fi
  7973.                     fi
  7974.                   fi
  7975.                   ;;
  7976.               esac
  7977.               if test "X$found_dir" != "X"; then
  7978.                 break
  7979.               fi
  7980.             done
  7981.           fi
  7982.           if test "X$found_dir" != "X"; then
  7983.                         LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name"
  7984.             if test "X$found_so" != "X"; then
  7985.                                                         if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
  7986.                                 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
  7987.               else
  7988.                                                                                 haveit=
  7989.                 for x in $ltrpathdirs; do
  7990.                   if test "X$x" = "X$found_dir"; then
  7991.                     haveit=yes
  7992.                     break
  7993.                   fi
  7994.                 done
  7995.                 if test -z "$haveit"; then
  7996.                   ltrpathdirs="$ltrpathdirs $found_dir"
  7997.                 fi
  7998.                                 if test "$hardcode_direct" = yes; then
  7999.                                                       LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
  8000.                 else
  8001.                   if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
  8002.                                                             LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
  8003.                                                             haveit=
  8004.                     for x in $rpathdirs; do
  8005.                       if test "X$x" = "X$found_dir"; then
  8006.                         haveit=yes
  8007.                         break
  8008.                       fi
  8009.                     done
  8010.                     if test -z "$haveit"; then
  8011.                       rpathdirs="$rpathdirs $found_dir"
  8012.                     fi
  8013.                   else
  8014.                                                                                 haveit=
  8015.                     for x in $LDFLAGS $LIBINTL; do
  8016.  
  8017.   acl_save_prefix="$prefix"
  8018.   prefix="$acl_final_prefix"
  8019.   acl_save_exec_prefix="$exec_prefix"
  8020.   exec_prefix="$acl_final_exec_prefix"
  8021.   eval x=\"$x\"
  8022.   exec_prefix="$acl_save_exec_prefix"
  8023.   prefix="$acl_save_prefix"
  8024.  
  8025.                       if test "X$x" = "X-L$found_dir"; then
  8026.                         haveit=yes
  8027.                         break
  8028.                       fi
  8029.                     done
  8030.                     if test -z "$haveit"; then
  8031.                       LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir"
  8032.                     fi
  8033.                     if test "$hardcode_minus_L" != no; then
  8034.                                                                                         LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
  8035.                     else
  8036.                                                                                                                                                                                 LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
  8037.                     fi
  8038.                   fi
  8039.                 fi
  8040.               fi
  8041.             else
  8042.               if test "X$found_a" != "X"; then
  8043.                                 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a"
  8044.               else
  8045.                                                 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name"
  8046.               fi
  8047.             fi
  8048.                         additional_includedir=
  8049.             case "$found_dir" in
  8050.               */lib | */lib/)
  8051.                 basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
  8052.                 additional_includedir="$basedir/include"
  8053.                 ;;
  8054.             esac
  8055.             if test "X$additional_includedir" != "X"; then
  8056.                                                                                                                 if test "X$additional_includedir" != "X/usr/include"; then
  8057.                 haveit=
  8058.                 if test "X$additional_includedir" = "X/usr/local/include"; then
  8059.                   if test -n "$GCC"; then
  8060.                     case $host_os in
  8061.                       linux*) haveit=yes;;
  8062.                     esac
  8063.                   fi
  8064.                 fi
  8065.                 if test -z "$haveit"; then
  8066.                   for x in $CPPFLAGS $INCINTL; do
  8067.  
  8068.   acl_save_prefix="$prefix"
  8069.   prefix="$acl_final_prefix"
  8070.   acl_save_exec_prefix="$exec_prefix"
  8071.   exec_prefix="$acl_final_exec_prefix"
  8072.   eval x=\"$x\"
  8073.   exec_prefix="$acl_save_exec_prefix"
  8074.   prefix="$acl_save_prefix"
  8075.  
  8076.                     if test "X$x" = "X-I$additional_includedir"; then
  8077.                       haveit=yes
  8078.                       break
  8079.                     fi
  8080.                   done
  8081.                   if test -z "$haveit"; then
  8082.                     if test -d "$additional_includedir"; then
  8083.                                             INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir"
  8084.                     fi
  8085.                   fi
  8086.                 fi
  8087.               fi
  8088.             fi
  8089.                         if test -n "$found_la"; then
  8090.                                                         save_libdir="$libdir"
  8091.               case "$found_la" in
  8092.                 */* | *\\*) . "$found_la" ;;
  8093.                 *) . "./$found_la" ;;
  8094.               esac
  8095.               libdir="$save_libdir"
  8096.                             for dep in $dependency_libs; do
  8097.                 case "$dep" in
  8098.                   -L*)
  8099.                     additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
  8100.                                                                                                                                                                 if test "X$additional_libdir" != "X/usr/lib"; then
  8101.                       haveit=
  8102.                       if test "X$additional_libdir" = "X/usr/local/lib"; then
  8103.                         if test -n "$GCC"; then
  8104.                           case $host_os in
  8105.                             linux*) haveit=yes;;
  8106.                           esac
  8107.                         fi
  8108.                       fi
  8109.                       if test -z "$haveit"; then
  8110.                         haveit=
  8111.                         for x in $LDFLAGS $LIBINTL; do
  8112.  
  8113.   acl_save_prefix="$prefix"
  8114.   prefix="$acl_final_prefix"
  8115.   acl_save_exec_prefix="$exec_prefix"
  8116.   exec_prefix="$acl_final_exec_prefix"
  8117.   eval x=\"$x\"
  8118.   exec_prefix="$acl_save_exec_prefix"
  8119.   prefix="$acl_save_prefix"
  8120.  
  8121.                           if test "X$x" = "X-L$additional_libdir"; then
  8122.                             haveit=yes
  8123.                             break
  8124.                           fi
  8125.                         done
  8126.                         if test -z "$haveit"; then
  8127.                           if test -d "$additional_libdir"; then
  8128.                                                         LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir"
  8129.                           fi
  8130.                         fi
  8131.                         haveit=
  8132.                         for x in $LDFLAGS $LTLIBINTL; do
  8133.  
  8134.   acl_save_prefix="$prefix"
  8135.   prefix="$acl_final_prefix"
  8136.   acl_save_exec_prefix="$exec_prefix"
  8137.   exec_prefix="$acl_final_exec_prefix"
  8138.   eval x=\"$x\"
  8139.   exec_prefix="$acl_save_exec_prefix"
  8140.   prefix="$acl_save_prefix"
  8141.  
  8142.                           if test "X$x" = "X-L$additional_libdir"; then
  8143.                             haveit=yes
  8144.                             break
  8145.                           fi
  8146.                         done
  8147.                         if test -z "$haveit"; then
  8148.                           if test -d "$additional_libdir"; then
  8149.                                                         LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir"
  8150.                           fi
  8151.                         fi
  8152.                       fi
  8153.                     fi
  8154.                     ;;
  8155.                   -R*)
  8156.                     dir=`echo "X$dep" | sed -e 's/^X-R//'`
  8157.                     if test "$enable_rpath" != no; then
  8158.                                                                   haveit=
  8159.                       for x in $rpathdirs; do
  8160.                         if test "X$x" = "X$dir"; then
  8161.                           haveit=yes
  8162.                           break
  8163.                         fi
  8164.                       done
  8165.                       if test -z "$haveit"; then
  8166.                         rpathdirs="$rpathdirs $dir"
  8167.                       fi
  8168.                                                                   haveit=
  8169.                       for x in $ltrpathdirs; do
  8170.                         if test "X$x" = "X$dir"; then
  8171.                           haveit=yes
  8172.                           break
  8173.                         fi
  8174.                       done
  8175.                       if test -z "$haveit"; then
  8176.                         ltrpathdirs="$ltrpathdirs $dir"
  8177.                       fi
  8178.                     fi
  8179.                     ;;
  8180.                   -l*)
  8181.                                         names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
  8182.                     ;;
  8183.                   *.la)
  8184.                                                                                 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
  8185.                     ;;
  8186.                   *)
  8187.                                         LIBINTL="${LIBINTL}${LIBINTL:+ }$dep"
  8188.                     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep"
  8189.                     ;;
  8190.                 esac
  8191.               done
  8192.             fi
  8193.           else
  8194.                                                             LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
  8195.             LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name"
  8196.           fi
  8197.         fi
  8198.       fi
  8199.     done
  8200.   done
  8201.   if test "X$rpathdirs" != "X"; then
  8202.     if test -n "$hardcode_libdir_separator"; then
  8203.                         alldirs=
  8204.       for found_dir in $rpathdirs; do
  8205.         alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
  8206.       done
  8207.             acl_save_libdir="$libdir"
  8208.       libdir="$alldirs"
  8209.       eval flag=\"$hardcode_libdir_flag_spec\"
  8210.       libdir="$acl_save_libdir"
  8211.       LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
  8212.     else
  8213.             for found_dir in $rpathdirs; do
  8214.         acl_save_libdir="$libdir"
  8215.         libdir="$found_dir"
  8216.         eval flag=\"$hardcode_libdir_flag_spec\"
  8217.         libdir="$acl_save_libdir"
  8218.         LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
  8219.       done
  8220.     fi
  8221.   fi
  8222.   if test "X$ltrpathdirs" != "X"; then
  8223.             for found_dir in $ltrpathdirs; do
  8224.       LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir"
  8225.     done
  8226.   fi
  8227.  
  8228.           echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5
  8229. echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6
  8230. if test "${gt_cv_func_gnugettext1_libintl+set}" = set; then
  8231.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8232. else
  8233.   gt_save_CPPFLAGS="$CPPFLAGS"
  8234.             CPPFLAGS="$CPPFLAGS $INCINTL"
  8235.             gt_save_LIBS="$LIBS"
  8236.             LIBS="$LIBS $LIBINTL"
  8237.                         cat >conftest.$ac_ext <<_ACEOF
  8238. #line $LINENO "configure"
  8239. /* confdefs.h.  */
  8240. _ACEOF
  8241. cat confdefs.h >>conftest.$ac_ext
  8242. cat >>conftest.$ac_ext <<_ACEOF
  8243. /* end confdefs.h.  */
  8244. #include <libintl.h>
  8245. extern int _nl_msg_cat_cntr;
  8246. extern
  8247. #ifdef __cplusplus
  8248. "C"
  8249. #endif
  8250. const char *_nl_expand_alias ();
  8251. int
  8252. main ()
  8253. {
  8254. bindtextdomain ("", "");
  8255. return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
  8256.   ;
  8257.   return 0;
  8258. }
  8259. _ACEOF
  8260. rm -f conftest.$ac_objext conftest$ac_exeext
  8261. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8262.   (eval $ac_link) 2>&5
  8263.   ac_status=$?
  8264.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8265.   (exit $ac_status); } &&
  8266.          { ac_try='test -s conftest$ac_exeext'
  8267.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8268.   (eval $ac_try) 2>&5
  8269.   ac_status=$?
  8270.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8271.   (exit $ac_status); }; }; then
  8272.   gt_cv_func_gnugettext1_libintl=yes
  8273. else
  8274.   echo "$as_me: failed program was:" >&5
  8275. sed 's/^/| /' conftest.$ac_ext >&5
  8276.  
  8277. gt_cv_func_gnugettext1_libintl=no
  8278. fi
  8279. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8280.                         if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then
  8281.               LIBS="$LIBS $LIBICONV"
  8282.               cat >conftest.$ac_ext <<_ACEOF
  8283. #line $LINENO "configure"
  8284. /* confdefs.h.  */
  8285. _ACEOF
  8286. cat confdefs.h >>conftest.$ac_ext
  8287. cat >>conftest.$ac_ext <<_ACEOF
  8288. /* end confdefs.h.  */
  8289. #include <libintl.h>
  8290. extern int _nl_msg_cat_cntr;
  8291. extern
  8292. #ifdef __cplusplus
  8293. "C"
  8294. #endif
  8295. const char *_nl_expand_alias ();
  8296. int
  8297. main ()
  8298. {
  8299. bindtextdomain ("", "");
  8300. return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
  8301.   ;
  8302.   return 0;
  8303. }
  8304. _ACEOF
  8305. rm -f conftest.$ac_objext conftest$ac_exeext
  8306. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8307.   (eval $ac_link) 2>&5
  8308.   ac_status=$?
  8309.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8310.   (exit $ac_status); } &&
  8311.          { ac_try='test -s conftest$ac_exeext'
  8312.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8313.   (eval $ac_try) 2>&5
  8314.   ac_status=$?
  8315.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8316.   (exit $ac_status); }; }; then
  8317.   LIBINTL="$LIBINTL $LIBICONV"
  8318.                 LTLIBINTL="$LTLIBINTL $LTLIBICONV"
  8319.                 gt_cv_func_gnugettext1_libintl=yes
  8320.  
  8321. else
  8322.   echo "$as_me: failed program was:" >&5
  8323. sed 's/^/| /' conftest.$ac_ext >&5
  8324.  
  8325. fi
  8326. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8327.             fi
  8328.             CPPFLAGS="$gt_save_CPPFLAGS"
  8329.             LIBS="$gt_save_LIBS"
  8330. fi
  8331. echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libintl" >&5
  8332. echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6
  8333.         fi
  8334.  
  8335.                                         if test "$gt_cv_func_gnugettext1_libc" = "yes" \
  8336.            || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \
  8337.                 && test "$PACKAGE" != gettext; }; then
  8338.           gt_use_preinstalled_gnugettext=yes
  8339.         else
  8340.                     LIBINTL=
  8341.           LTLIBINTL=
  8342.           INCINTL=
  8343.         fi
  8344.  
  8345.  
  8346.         if test "$gt_use_preinstalled_gnugettext" != "yes"; then
  8347.                               nls_cv_use_gnu_gettext=yes
  8348.         fi
  8349.       fi
  8350.  
  8351.       if test "$nls_cv_use_gnu_gettext" = "yes"; then
  8352.                 INTLOBJS="\$(GETTOBJS)"
  8353.         BUILD_INCLUDED_LIBINTL=yes
  8354.         USE_INCLUDED_LIBINTL=yes
  8355.         LIBINTL="\${top_builddir}/intl/libintl.a $LIBICONV"
  8356.         LTLIBINTL="\${top_builddir}/intl/libintl.a $LTLIBICONV"
  8357.         LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
  8358.       fi
  8359.  
  8360.       if test "$gt_use_preinstalled_gnugettext" = "yes" \
  8361.          || test "$nls_cv_use_gnu_gettext" = "yes"; then
  8362.                 CATOBJEXT=.gmo
  8363.       fi
  8364.  
  8365.  
  8366.     if test "$gt_use_preinstalled_gnugettext" = "yes" \
  8367.        || test "$nls_cv_use_gnu_gettext" = "yes"; then
  8368.  
  8369. cat >>confdefs.h <<\_ACEOF
  8370. #define ENABLE_NLS 1
  8371. _ACEOF
  8372.  
  8373.     else
  8374.       USE_NLS=no
  8375.     fi
  8376.   fi
  8377.  
  8378.   if test "$USE_NLS" = "yes"; then
  8379.  
  8380.     if test "$gt_use_preinstalled_gnugettext" = "yes"; then
  8381.       if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then
  8382.         echo "$as_me:$LINENO: checking how to link with libintl" >&5
  8383. echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6
  8384.         echo "$as_me:$LINENO: result: $LIBINTL" >&5
  8385. echo "${ECHO_T}$LIBINTL" >&6
  8386.  
  8387.   for element in $INCINTL; do
  8388.     haveit=
  8389.     for x in $CPPFLAGS; do
  8390.  
  8391.   acl_save_prefix="$prefix"
  8392.   prefix="$acl_final_prefix"
  8393.   acl_save_exec_prefix="$exec_prefix"
  8394.   exec_prefix="$acl_final_exec_prefix"
  8395.   eval x=\"$x\"
  8396.   exec_prefix="$acl_save_exec_prefix"
  8397.   prefix="$acl_save_prefix"
  8398.  
  8399.       if test "X$x" = "X$element"; then
  8400.         haveit=yes
  8401.         break
  8402.       fi
  8403.     done
  8404.     if test -z "$haveit"; then
  8405.       CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
  8406.     fi
  8407.   done
  8408.  
  8409.       fi
  8410.  
  8411.  
  8412. cat >>confdefs.h <<\_ACEOF
  8413. #define HAVE_GETTEXT 1
  8414. _ACEOF
  8415.  
  8416.  
  8417. cat >>confdefs.h <<\_ACEOF
  8418. #define HAVE_DCGETTEXT 1
  8419. _ACEOF
  8420.  
  8421.     fi
  8422.  
  8423.         POSUB=po
  8424.   fi
  8425.  
  8426.  
  8427.             if test "$PACKAGE" = gettext; then
  8428.       BUILD_INCLUDED_LIBINTL=yes
  8429.     fi
  8430.  
  8431.  
  8432.  
  8433.  
  8434.  
  8435.  
  8436.         nls_cv_header_intl=
  8437.     nls_cv_header_libgt=
  8438.  
  8439.         DATADIRNAME=share
  8440.  
  8441.  
  8442.         INSTOBJEXT=.mo
  8443.  
  8444.  
  8445.         GENCAT=gencat
  8446.  
  8447.  
  8448.         INTL_LIBTOOL_SUFFIX_PREFIX=
  8449.  
  8450.  
  8451.  
  8452.     INTLLIBS="$LIBINTL"
  8453.  
  8454.  
  8455.  
  8456.  
  8457.  
  8458.  
  8459. if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
  8460.  
  8461. cat >>confdefs.h <<\_ACEOF
  8462. #define HAVE_INCLUDED_GETTEXT 1
  8463. _ACEOF
  8464.  
  8465.   INCLUDES="${INCLUDES} -I\\\$(top_srcdir)/intl"
  8466. else
  8467.  
  8468. for ac_func in textdomain
  8469. do
  8470. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  8471. echo "$as_me:$LINENO: checking for $ac_func" >&5
  8472. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  8473. if eval "test \"\${$as_ac_var+set}\" = set"; then
  8474.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8475. else
  8476.   cat >conftest.$ac_ext <<_ACEOF
  8477. #line $LINENO "configure"
  8478. /* confdefs.h.  */
  8479. _ACEOF
  8480. cat confdefs.h >>conftest.$ac_ext
  8481. cat >>conftest.$ac_ext <<_ACEOF
  8482. /* end confdefs.h.  */
  8483. /* System header to define __stub macros and hopefully few prototypes,
  8484.     which can conflict with char $ac_func (); below.
  8485.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  8486.     <limits.h> exists even on freestanding compilers.  */
  8487. #ifdef __STDC__
  8488. # include <limits.h>
  8489. #else
  8490. # include <assert.h>
  8491. #endif
  8492. /* Override any gcc2 internal prototype to avoid an error.  */
  8493. #ifdef __cplusplus
  8494. extern "C"
  8495. {
  8496. #endif
  8497. /* We use char because int might match the return type of a gcc2
  8498.    builtin and then its argument prototype would still apply.  */
  8499. char $ac_func ();
  8500. /* The GNU C library defines this for functions which it implements
  8501.     to always fail with ENOSYS.  Some functions are actually named
  8502.     something starting with __ and the normal name is an alias.  */
  8503. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  8504. choke me
  8505. #else
  8506. char (*f) () = $ac_func;
  8507. #endif
  8508. #ifdef __cplusplus
  8509. }
  8510. #endif
  8511.  
  8512. int
  8513. main ()
  8514. {
  8515. return f != $ac_func;
  8516.   ;
  8517.   return 0;
  8518. }
  8519. _ACEOF
  8520. rm -f conftest.$ac_objext conftest$ac_exeext
  8521. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8522.   (eval $ac_link) 2>&5
  8523.   ac_status=$?
  8524.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8525.   (exit $ac_status); } &&
  8526.          { ac_try='test -s conftest$ac_exeext'
  8527.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8528.   (eval $ac_try) 2>&5
  8529.   ac_status=$?
  8530.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8531.   (exit $ac_status); }; }; then
  8532.   eval "$as_ac_var=yes"
  8533. else
  8534.   echo "$as_me: failed program was:" >&5
  8535. sed 's/^/| /' conftest.$ac_ext >&5
  8536.  
  8537. eval "$as_ac_var=no"
  8538. fi
  8539. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8540. fi
  8541. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  8542. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  8543. if test `eval echo '${'$as_ac_var'}'` = yes; then
  8544.   cat >>confdefs.h <<_ACEOF
  8545. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  8546. _ACEOF
  8547.  
  8548. else
  8549.  
  8550.     echo "$as_me:$LINENO: checking for textdomain in -lintl" >&5
  8551. echo $ECHO_N "checking for textdomain in -lintl... $ECHO_C" >&6
  8552. if test "${ac_cv_lib_intl_textdomain+set}" = set; then
  8553.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8554. else
  8555.   ac_check_lib_save_LIBS=$LIBS
  8556. LIBS="-lintl  $LIBS"
  8557. cat >conftest.$ac_ext <<_ACEOF
  8558. #line $LINENO "configure"
  8559. /* confdefs.h.  */
  8560. _ACEOF
  8561. cat confdefs.h >>conftest.$ac_ext
  8562. cat >>conftest.$ac_ext <<_ACEOF
  8563. /* end confdefs.h.  */
  8564.  
  8565. /* Override any gcc2 internal prototype to avoid an error.  */
  8566. #ifdef __cplusplus
  8567. extern "C"
  8568. #endif
  8569. /* We use char because int might match the return type of a gcc2
  8570.    builtin and then its argument prototype would still apply.  */
  8571. char textdomain ();
  8572. int
  8573. main ()
  8574. {
  8575. textdomain ();
  8576.   ;
  8577.   return 0;
  8578. }
  8579. _ACEOF
  8580. rm -f conftest.$ac_objext conftest$ac_exeext
  8581. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8582.   (eval $ac_link) 2>&5
  8583.   ac_status=$?
  8584.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8585.   (exit $ac_status); } &&
  8586.          { ac_try='test -s conftest$ac_exeext'
  8587.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8588.   (eval $ac_try) 2>&5
  8589.   ac_status=$?
  8590.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8591.   (exit $ac_status); }; }; then
  8592.   ac_cv_lib_intl_textdomain=yes
  8593. else
  8594.   echo "$as_me: failed program was:" >&5
  8595. sed 's/^/| /' conftest.$ac_ext >&5
  8596.  
  8597. ac_cv_lib_intl_textdomain=no
  8598. fi
  8599. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8600. LIBS=$ac_check_lib_save_LIBS
  8601. fi
  8602. echo "$as_me:$LINENO: result: $ac_cv_lib_intl_textdomain" >&5
  8603. echo "${ECHO_T}$ac_cv_lib_intl_textdomain" >&6
  8604. if test $ac_cv_lib_intl_textdomain = yes; then
  8605.   LDFLAGS_vlc="${LDFLAGS_vlc} -lintl"
  8606.       LDFLAGS_plugins="${LDFLAGS_plugins} -lintl"
  8607.  
  8608. fi
  8609.  
  8610.  
  8611. fi
  8612. done
  8613.  
  8614. fi
  8615.  
  8616.  
  8617. if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
  8618.   BUILD_INTL_TRUE=
  8619.   BUILD_INTL_FALSE='#'
  8620. else
  8621.   BUILD_INTL_TRUE='#'
  8622.   BUILD_INTL_FALSE=
  8623. fi
  8624.  
  8625. XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
  8626.  
  8627. echo "$as_me:$LINENO: checking for suffix of libraries" >&5
  8628. echo $ECHO_N "checking for suffix of libraries... $ECHO_C" >&6
  8629. echo "$as_me:$LINENO: result: ${LIBEXT}" >&5
  8630. echo "${ECHO_T}${LIBEXT}" >&6
  8631.  
  8632. if test x$SYS = xmingw32
  8633. then
  8634.     echo "$as_me:$LINENO: checking for opendir in -lmingwex" >&5
  8635. echo $ECHO_N "checking for opendir in -lmingwex... $ECHO_C" >&6
  8636. if test "${ac_cv_lib_mingwex_opendir+set}" = set; then
  8637.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8638. else
  8639.   ac_check_lib_save_LIBS=$LIBS
  8640. LIBS="-lmingwex  $LIBS"
  8641. cat >conftest.$ac_ext <<_ACEOF
  8642. #line $LINENO "configure"
  8643. /* confdefs.h.  */
  8644. _ACEOF
  8645. cat confdefs.h >>conftest.$ac_ext
  8646. cat >>conftest.$ac_ext <<_ACEOF
  8647. /* end confdefs.h.  */
  8648.  
  8649. /* Override any gcc2 internal prototype to avoid an error.  */
  8650. #ifdef __cplusplus
  8651. extern "C"
  8652. #endif
  8653. /* We use char because int might match the return type of a gcc2
  8654.    builtin and then its argument prototype would still apply.  */
  8655. char opendir ();
  8656. int
  8657. main ()
  8658. {
  8659. opendir ();
  8660.   ;
  8661.   return 0;
  8662. }
  8663. _ACEOF
  8664. rm -f conftest.$ac_objext conftest$ac_exeext
  8665. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8666.   (eval $ac_link) 2>&5
  8667.   ac_status=$?
  8668.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8669.   (exit $ac_status); } &&
  8670.          { ac_try='test -s conftest$ac_exeext'
  8671.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8672.   (eval $ac_try) 2>&5
  8673.   ac_status=$?
  8674.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8675.   (exit $ac_status); }; }; then
  8676.   ac_cv_lib_mingwex_opendir=yes
  8677. else
  8678.   echo "$as_me: failed program was:" >&5
  8679. sed 's/^/| /' conftest.$ac_ext >&5
  8680.  
  8681. ac_cv_lib_mingwex_opendir=no
  8682. fi
  8683. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8684. LIBS=$ac_check_lib_save_LIBS
  8685. fi
  8686. echo "$as_me:$LINENO: result: $ac_cv_lib_mingwex_opendir" >&5
  8687. echo "${ECHO_T}$ac_cv_lib_mingwex_opendir" >&6
  8688. if test $ac_cv_lib_mingwex_opendir = yes; then
  8689.   echo "$as_me:$LINENO: checking for opendir in -lmingw32" >&5
  8690. echo $ECHO_N "checking for opendir in -lmingw32... $ECHO_C" >&6
  8691. if test "${ac_cv_lib_mingw32_opendir+set}" = set; then
  8692.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8693. else
  8694.   ac_check_lib_save_LIBS=$LIBS
  8695. LIBS="-lmingw32  $LIBS"
  8696. cat >conftest.$ac_ext <<_ACEOF
  8697. #line $LINENO "configure"
  8698. /* confdefs.h.  */
  8699. _ACEOF
  8700. cat confdefs.h >>conftest.$ac_ext
  8701. cat >>conftest.$ac_ext <<_ACEOF
  8702. /* end confdefs.h.  */
  8703.  
  8704. /* Override any gcc2 internal prototype to avoid an error.  */
  8705. #ifdef __cplusplus
  8706. extern "C"
  8707. #endif
  8708. /* We use char because int might match the return type of a gcc2
  8709.    builtin and then its argument prototype would still apply.  */
  8710. char opendir ();
  8711. int
  8712. main ()
  8713. {
  8714. opendir ();
  8715.   ;
  8716.   return 0;
  8717. }
  8718. _ACEOF
  8719. rm -f conftest.$ac_objext conftest$ac_exeext
  8720. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  8721.   (eval $ac_link) 2>&5
  8722.   ac_status=$?
  8723.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8724.   (exit $ac_status); } &&
  8725.          { ac_try='test -s conftest$ac_exeext'
  8726.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8727.   (eval $ac_try) 2>&5
  8728.   ac_status=$?
  8729.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8730.   (exit $ac_status); }; }; then
  8731.   ac_cv_lib_mingw32_opendir=yes
  8732. else
  8733.   echo "$as_me: failed program was:" >&5
  8734. sed 's/^/| /' conftest.$ac_ext >&5
  8735.  
  8736. ac_cv_lib_mingw32_opendir=no
  8737. fi
  8738. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  8739. LIBS=$ac_check_lib_save_LIBS
  8740. fi
  8741. echo "$as_me:$LINENO: result: $ac_cv_lib_mingw32_opendir" >&5
  8742. echo "${ECHO_T}$ac_cv_lib_mingw32_opendir" >&6
  8743. if test $ac_cv_lib_mingw32_opendir = yes; then
  8744.   LDFLAGS_vlc="${LDFLAGS_vlc}"
  8745. else
  8746.   LDFLAGS_vlc="${LDFLAGS_vlc} -lmingwex"
  8747.              LDFLAGS_gtk="${LDFLAGS_gtk} -lmingwex"
  8748. fi
  8749.  
  8750.  
  8751. fi
  8752.  
  8753. fi
  8754.  
  8755. if test x$SYS = xmingw32
  8756. then
  8757.     echo "$as_me:$LINENO: checking if \$CC accepts -mms-bitfields" >&5
  8758. echo $ECHO_N "checking if \$CC accepts -mms-bitfields... $ECHO_C" >&6
  8759. if test "${ac_cv_c_mms_bitfields+set}" = set; then
  8760.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8761. else
  8762.   CFLAGS="${CFLAGS_save} -mms-bitfields"
  8763.          cat >conftest.$ac_ext <<_ACEOF
  8764. #line $LINENO "configure"
  8765. /* confdefs.h.  */
  8766. _ACEOF
  8767. cat confdefs.h >>conftest.$ac_ext
  8768. cat >>conftest.$ac_ext <<_ACEOF
  8769. /* end confdefs.h.  */
  8770.  
  8771. int
  8772. main ()
  8773. {
  8774.  
  8775.   ;
  8776.   return 0;
  8777. }
  8778. _ACEOF
  8779. rm -f conftest.$ac_objext
  8780. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  8781.   (eval $ac_compile) 2>&5
  8782.   ac_status=$?
  8783.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8784.   (exit $ac_status); } &&
  8785.          { ac_try='test -s conftest.$ac_objext'
  8786.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8787.   (eval $ac_try) 2>&5
  8788.   ac_status=$?
  8789.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8790.   (exit $ac_status); }; }; then
  8791.   ac_cv_c_mms_bitfields=yes
  8792. else
  8793.   echo "$as_me: failed program was:" >&5
  8794. sed 's/^/| /' conftest.$ac_ext >&5
  8795.  
  8796. ac_cv_c_mms_bitfields=no
  8797. fi
  8798. rm -f conftest.$ac_objext conftest.$ac_ext
  8799. fi
  8800. echo "$as_me:$LINENO: result: $ac_cv_c_mms_bitfields" >&5
  8801. echo "${ECHO_T}$ac_cv_c_mms_bitfields" >&6
  8802.     if test x"$ac_cv_c_mms_bitfields" != x"no"; then
  8803.         CFLAGS_save="${CFLAGS_save} -mms-bitfields";
  8804.         CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
  8805.     else
  8806.         echo "$as_me:$LINENO: checking if \$CC accepts -fnative-struct" >&5
  8807. echo $ECHO_N "checking if \$CC accepts -fnative-struct... $ECHO_C" >&6
  8808. if test "${ac_cv_c_fnative_struct+set}" = set; then
  8809.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8810. else
  8811.   CFLAGS="${CFLAGS_save} -fnative-struct"
  8812.              cat >conftest.$ac_ext <<_ACEOF
  8813. #line $LINENO "configure"
  8814. /* confdefs.h.  */
  8815. _ACEOF
  8816. cat confdefs.h >>conftest.$ac_ext
  8817. cat >>conftest.$ac_ext <<_ACEOF
  8818. /* end confdefs.h.  */
  8819.  
  8820. int
  8821. main ()
  8822. {
  8823.  
  8824.   ;
  8825.   return 0;
  8826. }
  8827. _ACEOF
  8828. rm -f conftest.$ac_objext
  8829. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  8830.   (eval $ac_compile) 2>&5
  8831.   ac_status=$?
  8832.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8833.   (exit $ac_status); } &&
  8834.          { ac_try='test -s conftest.$ac_objext'
  8835.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8836.   (eval $ac_try) 2>&5
  8837.   ac_status=$?
  8838.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8839.   (exit $ac_status); }; }; then
  8840.   ac_cv_c_fnative_struct=yes
  8841. else
  8842.   echo "$as_me: failed program was:" >&5
  8843. sed 's/^/| /' conftest.$ac_ext >&5
  8844.  
  8845. ac_cv_c_fnative_struct=no
  8846. fi
  8847. rm -f conftest.$ac_objext conftest.$ac_ext
  8848. fi
  8849. echo "$as_me:$LINENO: result: $ac_cv_c_fnative_struct" >&5
  8850. echo "${ECHO_T}$ac_cv_c_fnative_struct" >&6
  8851.         if test x"$ac_cv_c_fnative_struct" != x"no"; then
  8852.             CFLAGS_save="${CFLAGS_save} -fnative-struct";
  8853.             CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
  8854.         fi
  8855.     fi
  8856.  
  8857.     CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  8858. fi
  8859.  
  8860. if test x$SYS = xmingw32
  8861. then
  8862. ac_ext=cc
  8863. ac_cpp='$CXXCPP $CPPFLAGS'
  8864. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  8865. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  8866. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  8867.  
  8868.  
  8869. echo "$as_me:$LINENO: checking if \$CXX accepts -fvtable-thunks" >&5
  8870. echo $ECHO_N "checking if \$CXX accepts -fvtable-thunks... $ECHO_C" >&6
  8871. if test "${ac_cv_cxx_fvtable_thunks+set}" = set; then
  8872.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8873. else
  8874.   CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
  8875.          cat >conftest.$ac_ext <<_ACEOF
  8876. #line $LINENO "configure"
  8877. /* confdefs.h.  */
  8878. _ACEOF
  8879. cat confdefs.h >>conftest.$ac_ext
  8880. cat >>conftest.$ac_ext <<_ACEOF
  8881. /* end confdefs.h.  */
  8882.  
  8883. int
  8884. main ()
  8885. {
  8886.  
  8887.   ;
  8888.   return 0;
  8889. }
  8890. _ACEOF
  8891. rm -f conftest.$ac_objext
  8892. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  8893.   (eval $ac_compile) 2>&5
  8894.   ac_status=$?
  8895.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8896.   (exit $ac_status); } &&
  8897.          { ac_try='test -s conftest.$ac_objext'
  8898.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  8899.   (eval $ac_try) 2>&5
  8900.   ac_status=$?
  8901.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  8902.   (exit $ac_status); }; }; then
  8903.   ac_cv_cxx_fvtable_thunks=yes
  8904. else
  8905.   echo "$as_me: failed program was:" >&5
  8906. sed 's/^/| /' conftest.$ac_ext >&5
  8907.  
  8908. ac_cv_cxx_fvtable_thunks=no
  8909. fi
  8910. rm -f conftest.$ac_objext conftest.$ac_ext
  8911. fi
  8912. echo "$as_me:$LINENO: result: $ac_cv_cxx_fvtable_thunks" >&5
  8913. echo "${ECHO_T}$ac_cv_cxx_fvtable_thunks" >&6
  8914.     if test x"$ac_cv_cxx_fvtable_thunks" = x"yes"; then
  8915.         CXXFLAGS_mingw32_special="-fvtable-thunks"
  8916.     fi
  8917.  
  8918.     CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"
  8919.     CXXFLAGS="${CXXFLAGS_save}"
  8920. ac_ext=c
  8921. ac_cpp='$CPP $CPPFLAGS'
  8922. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  8923. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  8924. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  8925.  
  8926. fi
  8927.  
  8928. case "x${SYS}" in
  8929.   xmingw32|xcygwin)
  8930.     CFLAGS_pics="${CFLAGS_pics} ${CFLAGS_mingw32_special}"
  8931.     CXXFLAGS_pics="${CXXFLAGS_pics} ${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}"
  8932.     OBJCFLAGS_pics="${OBJCFLAGS_pics} ${CFLAGS_mingw32_special}"
  8933.     CFLAGS_plugins="${CFLAGS_plugins} ${CFLAGS_mingw32_special}"
  8934.     CXXFLAGS_plugins="${CXXFLAGS_plugins} ${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}"
  8935.     OBJCFLAGS_plugins="${OBJCFLAGS_plugins} ${CFLAGS_mingw32_special}"
  8936.     ;;
  8937.   x*)
  8938.     CFLAGS_pics="${CFLAGS_pics} -fPIC"
  8939.     CXXFLAGS_pics="${CXXFLAGS_pics} -fPIC"
  8940.     OBJCFLAGS_pics="${OBJCFLAGS_pics} -fPIC"
  8941.     CFLAGS_plugins="${CFLAGS_plugins} -fPIC"
  8942.     CXXFLAGS_plugins="${CXXFLAGS_plugins} -fPIC"
  8943.     OBJCFLAGS_plugins="${OBJCFLAGS_plugins} -fPIC"
  8944.     LDFLAGS_plugins="${LDFLAGS_plugins} -fPIC"
  8945.     ;;
  8946. esac
  8947.  
  8948. CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
  8949.  
  8950. need_libc=false
  8951.  
  8952.  
  8953.  
  8954.  
  8955.  
  8956.  
  8957.  
  8958.  
  8959.  
  8960.  
  8961.  
  8962.  
  8963.  
  8964.  
  8965.  
  8966.  
  8967.  
  8968.  
  8969. for ac_func in gettimeofday select strerror strtod strtol isatty vasprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 atoll getenv putenv setenv
  8970. do
  8971. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  8972. echo "$as_me:$LINENO: checking for $ac_func" >&5
  8973. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  8974. if eval "test \"\${$as_ac_var+set}\" = set"; then
  8975.   echo $ECHO_N "(cached) $ECHO_C" >&6
  8976. else
  8977.   cat >conftest.$ac_ext <<_ACEOF
  8978. #line $LINENO "configure"
  8979. /* confdefs.h.  */
  8980. _ACEOF
  8981. cat confdefs.h >>conftest.$ac_ext
  8982. cat >>conftest.$ac_ext <<_ACEOF
  8983. /* end confdefs.h.  */
  8984. /* System header to define __stub macros and hopefully few prototypes,
  8985.     which can conflict with char $ac_func (); below.
  8986.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  8987.     <limits.h> exists even on freestanding compilers.  */
  8988. #ifdef __STDC__
  8989. # include <limits.h>
  8990. #else
  8991. # include <assert.h>
  8992. #endif
  8993. /* Override any gcc2 internal prototype to avoid an error.  */
  8994. #ifdef __cplusplus
  8995. extern "C"
  8996. {
  8997. #endif
  8998. /* We use char because int might match the return type of a gcc2
  8999.    builtin and then its argument prototype would still apply.  */
  9000. char $ac_func ();
  9001. /* The GNU C library defines this for functions which it implements
  9002.     to always fail with ENOSYS.  Some functions are actually named
  9003.     something starting with __ and the normal name is an alias.  */
  9004. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9005. choke me
  9006. #else
  9007. char (*f) () = $ac_func;
  9008. #endif
  9009. #ifdef __cplusplus
  9010. }
  9011. #endif
  9012.  
  9013. int
  9014. main ()
  9015. {
  9016. return f != $ac_func;
  9017.   ;
  9018.   return 0;
  9019. }
  9020. _ACEOF
  9021. rm -f conftest.$ac_objext conftest$ac_exeext
  9022. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9023.   (eval $ac_link) 2>&5
  9024.   ac_status=$?
  9025.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9026.   (exit $ac_status); } &&
  9027.          { ac_try='test -s conftest$ac_exeext'
  9028.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9029.   (eval $ac_try) 2>&5
  9030.   ac_status=$?
  9031.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9032.   (exit $ac_status); }; }; then
  9033.   eval "$as_ac_var=yes"
  9034. else
  9035.   echo "$as_me: failed program was:" >&5
  9036. sed 's/^/| /' conftest.$ac_ext >&5
  9037.  
  9038. eval "$as_ac_var=no"
  9039. fi
  9040. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9041. fi
  9042. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9043. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9044. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9045.   cat >>confdefs.h <<_ACEOF
  9046. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9047. _ACEOF
  9048.  
  9049. fi
  9050. done
  9051.  
  9052.  
  9053.  
  9054.  
  9055.  
  9056.  
  9057. for ac_func in strdup strndup atof lseek
  9058. do
  9059. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9060. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9061. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9062. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9063.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9064. else
  9065.   cat >conftest.$ac_ext <<_ACEOF
  9066. #line $LINENO "configure"
  9067. /* confdefs.h.  */
  9068. _ACEOF
  9069. cat confdefs.h >>conftest.$ac_ext
  9070. cat >>conftest.$ac_ext <<_ACEOF
  9071. /* end confdefs.h.  */
  9072. /* System header to define __stub macros and hopefully few prototypes,
  9073.     which can conflict with char $ac_func (); below.
  9074.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9075.     <limits.h> exists even on freestanding compilers.  */
  9076. #ifdef __STDC__
  9077. # include <limits.h>
  9078. #else
  9079. # include <assert.h>
  9080. #endif
  9081. /* Override any gcc2 internal prototype to avoid an error.  */
  9082. #ifdef __cplusplus
  9083. extern "C"
  9084. {
  9085. #endif
  9086. /* We use char because int might match the return type of a gcc2
  9087.    builtin and then its argument prototype would still apply.  */
  9088. char $ac_func ();
  9089. /* The GNU C library defines this for functions which it implements
  9090.     to always fail with ENOSYS.  Some functions are actually named
  9091.     something starting with __ and the normal name is an alias.  */
  9092. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9093. choke me
  9094. #else
  9095. char (*f) () = $ac_func;
  9096. #endif
  9097. #ifdef __cplusplus
  9098. }
  9099. #endif
  9100.  
  9101. int
  9102. main ()
  9103. {
  9104. return f != $ac_func;
  9105.   ;
  9106.   return 0;
  9107. }
  9108. _ACEOF
  9109. rm -f conftest.$ac_objext conftest$ac_exeext
  9110. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9111.   (eval $ac_link) 2>&5
  9112.   ac_status=$?
  9113.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9114.   (exit $ac_status); } &&
  9115.          { ac_try='test -s conftest$ac_exeext'
  9116.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9117.   (eval $ac_try) 2>&5
  9118.   ac_status=$?
  9119.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9120.   (exit $ac_status); }; }; then
  9121.   eval "$as_ac_var=yes"
  9122. else
  9123.   echo "$as_me: failed program was:" >&5
  9124. sed 's/^/| /' conftest.$ac_ext >&5
  9125.  
  9126. eval "$as_ac_var=no"
  9127. fi
  9128. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9129. fi
  9130. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9131. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9132. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9133.   cat >>confdefs.h <<_ACEOF
  9134. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9135. _ACEOF
  9136.  
  9137. fi
  9138. done
  9139.  
  9140.  
  9141. for ac_func in strcasecmp
  9142. do
  9143. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9144. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9145. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9146. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9147.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9148. else
  9149.   cat >conftest.$ac_ext <<_ACEOF
  9150. #line $LINENO "configure"
  9151. /* confdefs.h.  */
  9152. _ACEOF
  9153. cat confdefs.h >>conftest.$ac_ext
  9154. cat >>conftest.$ac_ext <<_ACEOF
  9155. /* end confdefs.h.  */
  9156. /* System header to define __stub macros and hopefully few prototypes,
  9157.     which can conflict with char $ac_func (); below.
  9158.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9159.     <limits.h> exists even on freestanding compilers.  */
  9160. #ifdef __STDC__
  9161. # include <limits.h>
  9162. #else
  9163. # include <assert.h>
  9164. #endif
  9165. /* Override any gcc2 internal prototype to avoid an error.  */
  9166. #ifdef __cplusplus
  9167. extern "C"
  9168. {
  9169. #endif
  9170. /* We use char because int might match the return type of a gcc2
  9171.    builtin and then its argument prototype would still apply.  */
  9172. char $ac_func ();
  9173. /* The GNU C library defines this for functions which it implements
  9174.     to always fail with ENOSYS.  Some functions are actually named
  9175.     something starting with __ and the normal name is an alias.  */
  9176. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9177. choke me
  9178. #else
  9179. char (*f) () = $ac_func;
  9180. #endif
  9181. #ifdef __cplusplus
  9182. }
  9183. #endif
  9184.  
  9185. int
  9186. main ()
  9187. {
  9188. return f != $ac_func;
  9189.   ;
  9190.   return 0;
  9191. }
  9192. _ACEOF
  9193. rm -f conftest.$ac_objext conftest$ac_exeext
  9194. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9195.   (eval $ac_link) 2>&5
  9196.   ac_status=$?
  9197.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9198.   (exit $ac_status); } &&
  9199.          { ac_try='test -s conftest$ac_exeext'
  9200.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9201.   (eval $ac_try) 2>&5
  9202.   ac_status=$?
  9203.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9204.   (exit $ac_status); }; }; then
  9205.   eval "$as_ac_var=yes"
  9206. else
  9207.   echo "$as_me: failed program was:" >&5
  9208. sed 's/^/| /' conftest.$ac_ext >&5
  9209.  
  9210. eval "$as_ac_var=no"
  9211. fi
  9212. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9213. fi
  9214. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9215. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9216. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9217.   cat >>confdefs.h <<_ACEOF
  9218. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9219. _ACEOF
  9220.  
  9221. else
  9222.  
  9223. for ac_func in stricmp
  9224. do
  9225. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9226. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9227. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9228. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9229.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9230. else
  9231.   cat >conftest.$ac_ext <<_ACEOF
  9232. #line $LINENO "configure"
  9233. /* confdefs.h.  */
  9234. _ACEOF
  9235. cat confdefs.h >>conftest.$ac_ext
  9236. cat >>conftest.$ac_ext <<_ACEOF
  9237. /* end confdefs.h.  */
  9238. /* System header to define __stub macros and hopefully few prototypes,
  9239.     which can conflict with char $ac_func (); below.
  9240.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9241.     <limits.h> exists even on freestanding compilers.  */
  9242. #ifdef __STDC__
  9243. # include <limits.h>
  9244. #else
  9245. # include <assert.h>
  9246. #endif
  9247. /* Override any gcc2 internal prototype to avoid an error.  */
  9248. #ifdef __cplusplus
  9249. extern "C"
  9250. {
  9251. #endif
  9252. /* We use char because int might match the return type of a gcc2
  9253.    builtin and then its argument prototype would still apply.  */
  9254. char $ac_func ();
  9255. /* The GNU C library defines this for functions which it implements
  9256.     to always fail with ENOSYS.  Some functions are actually named
  9257.     something starting with __ and the normal name is an alias.  */
  9258. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9259. choke me
  9260. #else
  9261. char (*f) () = $ac_func;
  9262. #endif
  9263. #ifdef __cplusplus
  9264. }
  9265. #endif
  9266.  
  9267. int
  9268. main ()
  9269. {
  9270. return f != $ac_func;
  9271.   ;
  9272.   return 0;
  9273. }
  9274. _ACEOF
  9275. rm -f conftest.$ac_objext conftest$ac_exeext
  9276. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9277.   (eval $ac_link) 2>&5
  9278.   ac_status=$?
  9279.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9280.   (exit $ac_status); } &&
  9281.          { ac_try='test -s conftest$ac_exeext'
  9282.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9283.   (eval $ac_try) 2>&5
  9284.   ac_status=$?
  9285.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9286.   (exit $ac_status); }; }; then
  9287.   eval "$as_ac_var=yes"
  9288. else
  9289.   echo "$as_me: failed program was:" >&5
  9290. sed 's/^/| /' conftest.$ac_ext >&5
  9291.  
  9292. eval "$as_ac_var=no"
  9293. fi
  9294. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9295. fi
  9296. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9297. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9298. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9299.   cat >>confdefs.h <<_ACEOF
  9300. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9301. _ACEOF
  9302.  
  9303. fi
  9304. done
  9305.  
  9306. fi
  9307. done
  9308.  
  9309.  
  9310. for ac_func in strncasecmp
  9311. do
  9312. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9313. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9314. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9315. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9316.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9317. else
  9318.   cat >conftest.$ac_ext <<_ACEOF
  9319. #line $LINENO "configure"
  9320. /* confdefs.h.  */
  9321. _ACEOF
  9322. cat confdefs.h >>conftest.$ac_ext
  9323. cat >>conftest.$ac_ext <<_ACEOF
  9324. /* end confdefs.h.  */
  9325. /* System header to define __stub macros and hopefully few prototypes,
  9326.     which can conflict with char $ac_func (); below.
  9327.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9328.     <limits.h> exists even on freestanding compilers.  */
  9329. #ifdef __STDC__
  9330. # include <limits.h>
  9331. #else
  9332. # include <assert.h>
  9333. #endif
  9334. /* Override any gcc2 internal prototype to avoid an error.  */
  9335. #ifdef __cplusplus
  9336. extern "C"
  9337. {
  9338. #endif
  9339. /* We use char because int might match the return type of a gcc2
  9340.    builtin and then its argument prototype would still apply.  */
  9341. char $ac_func ();
  9342. /* The GNU C library defines this for functions which it implements
  9343.     to always fail with ENOSYS.  Some functions are actually named
  9344.     something starting with __ and the normal name is an alias.  */
  9345. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9346. choke me
  9347. #else
  9348. char (*f) () = $ac_func;
  9349. #endif
  9350. #ifdef __cplusplus
  9351. }
  9352. #endif
  9353.  
  9354. int
  9355. main ()
  9356. {
  9357. return f != $ac_func;
  9358.   ;
  9359.   return 0;
  9360. }
  9361. _ACEOF
  9362. rm -f conftest.$ac_objext conftest$ac_exeext
  9363. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9364.   (eval $ac_link) 2>&5
  9365.   ac_status=$?
  9366.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9367.   (exit $ac_status); } &&
  9368.          { ac_try='test -s conftest$ac_exeext'
  9369.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9370.   (eval $ac_try) 2>&5
  9371.   ac_status=$?
  9372.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9373.   (exit $ac_status); }; }; then
  9374.   eval "$as_ac_var=yes"
  9375. else
  9376.   echo "$as_me: failed program was:" >&5
  9377. sed 's/^/| /' conftest.$ac_ext >&5
  9378.  
  9379. eval "$as_ac_var=no"
  9380. fi
  9381. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9382. fi
  9383. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9384. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9385. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9386.   cat >>confdefs.h <<_ACEOF
  9387. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9388. _ACEOF
  9389.  
  9390. else
  9391.  
  9392. for ac_func in strnicmp
  9393. do
  9394. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9395. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9396. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9397. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9398.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9399. else
  9400.   cat >conftest.$ac_ext <<_ACEOF
  9401. #line $LINENO "configure"
  9402. /* confdefs.h.  */
  9403. _ACEOF
  9404. cat confdefs.h >>conftest.$ac_ext
  9405. cat >>conftest.$ac_ext <<_ACEOF
  9406. /* end confdefs.h.  */
  9407. /* System header to define __stub macros and hopefully few prototypes,
  9408.     which can conflict with char $ac_func (); below.
  9409.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9410.     <limits.h> exists even on freestanding compilers.  */
  9411. #ifdef __STDC__
  9412. # include <limits.h>
  9413. #else
  9414. # include <assert.h>
  9415. #endif
  9416. /* Override any gcc2 internal prototype to avoid an error.  */
  9417. #ifdef __cplusplus
  9418. extern "C"
  9419. {
  9420. #endif
  9421. /* We use char because int might match the return type of a gcc2
  9422.    builtin and then its argument prototype would still apply.  */
  9423. char $ac_func ();
  9424. /* The GNU C library defines this for functions which it implements
  9425.     to always fail with ENOSYS.  Some functions are actually named
  9426.     something starting with __ and the normal name is an alias.  */
  9427. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9428. choke me
  9429. #else
  9430. char (*f) () = $ac_func;
  9431. #endif
  9432. #ifdef __cplusplus
  9433. }
  9434. #endif
  9435.  
  9436. int
  9437. main ()
  9438. {
  9439. return f != $ac_func;
  9440.   ;
  9441.   return 0;
  9442. }
  9443. _ACEOF
  9444. rm -f conftest.$ac_objext conftest$ac_exeext
  9445. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9446.   (eval $ac_link) 2>&5
  9447.   ac_status=$?
  9448.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9449.   (exit $ac_status); } &&
  9450.          { ac_try='test -s conftest$ac_exeext'
  9451.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9452.   (eval $ac_try) 2>&5
  9453.   ac_status=$?
  9454.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9455.   (exit $ac_status); }; }; then
  9456.   eval "$as_ac_var=yes"
  9457. else
  9458.   echo "$as_me: failed program was:" >&5
  9459. sed 's/^/| /' conftest.$ac_ext >&5
  9460.  
  9461. eval "$as_ac_var=no"
  9462. fi
  9463. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9464. fi
  9465. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9466. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9467. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9468.   cat >>confdefs.h <<_ACEOF
  9469. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9470. _ACEOF
  9471.  
  9472. fi
  9473. done
  9474.  
  9475. fi
  9476. done
  9477.  
  9478.  
  9479.  
  9480. for ac_func in connect
  9481. do
  9482. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9483. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9484. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9485. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9486.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9487. else
  9488.   cat >conftest.$ac_ext <<_ACEOF
  9489. #line $LINENO "configure"
  9490. /* confdefs.h.  */
  9491. _ACEOF
  9492. cat confdefs.h >>conftest.$ac_ext
  9493. cat >>conftest.$ac_ext <<_ACEOF
  9494. /* end confdefs.h.  */
  9495. /* System header to define __stub macros and hopefully few prototypes,
  9496.     which can conflict with char $ac_func (); below.
  9497.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9498.     <limits.h> exists even on freestanding compilers.  */
  9499. #ifdef __STDC__
  9500. # include <limits.h>
  9501. #else
  9502. # include <assert.h>
  9503. #endif
  9504. /* Override any gcc2 internal prototype to avoid an error.  */
  9505. #ifdef __cplusplus
  9506. extern "C"
  9507. {
  9508. #endif
  9509. /* We use char because int might match the return type of a gcc2
  9510.    builtin and then its argument prototype would still apply.  */
  9511. char $ac_func ();
  9512. /* The GNU C library defines this for functions which it implements
  9513.     to always fail with ENOSYS.  Some functions are actually named
  9514.     something starting with __ and the normal name is an alias.  */
  9515. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9516. choke me
  9517. #else
  9518. char (*f) () = $ac_func;
  9519. #endif
  9520. #ifdef __cplusplus
  9521. }
  9522. #endif
  9523.  
  9524. int
  9525. main ()
  9526. {
  9527. return f != $ac_func;
  9528.   ;
  9529.   return 0;
  9530. }
  9531. _ACEOF
  9532. rm -f conftest.$ac_objext conftest$ac_exeext
  9533. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9534.   (eval $ac_link) 2>&5
  9535.   ac_status=$?
  9536.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9537.   (exit $ac_status); } &&
  9538.          { ac_try='test -s conftest$ac_exeext'
  9539.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9540.   (eval $ac_try) 2>&5
  9541.   ac_status=$?
  9542.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9543.   (exit $ac_status); }; }; then
  9544.   eval "$as_ac_var=yes"
  9545. else
  9546.   echo "$as_me: failed program was:" >&5
  9547. sed 's/^/| /' conftest.$ac_ext >&5
  9548.  
  9549. eval "$as_ac_var=no"
  9550. fi
  9551. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9552. fi
  9553. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9554. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9555. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9556.   cat >>confdefs.h <<_ACEOF
  9557. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9558. _ACEOF
  9559.  
  9560. else
  9561.  
  9562.   echo "$as_me:$LINENO: checking for connect in -lsocket" >&5
  9563. echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
  9564. if test "${ac_cv_lib_socket_connect+set}" = set; then
  9565.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9566. else
  9567.   ac_check_lib_save_LIBS=$LIBS
  9568. LIBS="-lsocket  $LIBS"
  9569. cat >conftest.$ac_ext <<_ACEOF
  9570. #line $LINENO "configure"
  9571. /* confdefs.h.  */
  9572. _ACEOF
  9573. cat confdefs.h >>conftest.$ac_ext
  9574. cat >>conftest.$ac_ext <<_ACEOF
  9575. /* end confdefs.h.  */
  9576.  
  9577. /* Override any gcc2 internal prototype to avoid an error.  */
  9578. #ifdef __cplusplus
  9579. extern "C"
  9580. #endif
  9581. /* We use char because int might match the return type of a gcc2
  9582.    builtin and then its argument prototype would still apply.  */
  9583. char connect ();
  9584. int
  9585. main ()
  9586. {
  9587. connect ();
  9588.   ;
  9589.   return 0;
  9590. }
  9591. _ACEOF
  9592. rm -f conftest.$ac_objext conftest$ac_exeext
  9593. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9594.   (eval $ac_link) 2>&5
  9595.   ac_status=$?
  9596.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9597.   (exit $ac_status); } &&
  9598.          { ac_try='test -s conftest$ac_exeext'
  9599.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9600.   (eval $ac_try) 2>&5
  9601.   ac_status=$?
  9602.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9603.   (exit $ac_status); }; }; then
  9604.   ac_cv_lib_socket_connect=yes
  9605. else
  9606.   echo "$as_me: failed program was:" >&5
  9607. sed 's/^/| /' conftest.$ac_ext >&5
  9608.  
  9609. ac_cv_lib_socket_connect=no
  9610. fi
  9611. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9612. LIBS=$ac_check_lib_save_LIBS
  9613. fi
  9614. echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5
  9615. echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
  9616. if test $ac_cv_lib_socket_connect = yes; then
  9617.   LDFLAGS_ipv4="${LDFLAGS_ipv4} -lsocket"
  9618.     LDFLAGS_vlc="${LDFLAGS_vlc} -lsocket"
  9619.  
  9620. fi
  9621.  
  9622. fi
  9623. done
  9624.  
  9625.  
  9626.  
  9627. for ac_func in send
  9628. do
  9629. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9630. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9631. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9632. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9633.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9634. else
  9635.   cat >conftest.$ac_ext <<_ACEOF
  9636. #line $LINENO "configure"
  9637. /* confdefs.h.  */
  9638. _ACEOF
  9639. cat confdefs.h >>conftest.$ac_ext
  9640. cat >>conftest.$ac_ext <<_ACEOF
  9641. /* end confdefs.h.  */
  9642. /* System header to define __stub macros and hopefully few prototypes,
  9643.     which can conflict with char $ac_func (); below.
  9644.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9645.     <limits.h> exists even on freestanding compilers.  */
  9646. #ifdef __STDC__
  9647. # include <limits.h>
  9648. #else
  9649. # include <assert.h>
  9650. #endif
  9651. /* Override any gcc2 internal prototype to avoid an error.  */
  9652. #ifdef __cplusplus
  9653. extern "C"
  9654. {
  9655. #endif
  9656. /* We use char because int might match the return type of a gcc2
  9657.    builtin and then its argument prototype would still apply.  */
  9658. char $ac_func ();
  9659. /* The GNU C library defines this for functions which it implements
  9660.     to always fail with ENOSYS.  Some functions are actually named
  9661.     something starting with __ and the normal name is an alias.  */
  9662. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9663. choke me
  9664. #else
  9665. char (*f) () = $ac_func;
  9666. #endif
  9667. #ifdef __cplusplus
  9668. }
  9669. #endif
  9670.  
  9671. int
  9672. main ()
  9673. {
  9674. return f != $ac_func;
  9675.   ;
  9676.   return 0;
  9677. }
  9678. _ACEOF
  9679. rm -f conftest.$ac_objext conftest$ac_exeext
  9680. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9681.   (eval $ac_link) 2>&5
  9682.   ac_status=$?
  9683.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9684.   (exit $ac_status); } &&
  9685.          { ac_try='test -s conftest$ac_exeext'
  9686.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9687.   (eval $ac_try) 2>&5
  9688.   ac_status=$?
  9689.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9690.   (exit $ac_status); }; }; then
  9691.   eval "$as_ac_var=yes"
  9692. else
  9693.   echo "$as_me: failed program was:" >&5
  9694. sed 's/^/| /' conftest.$ac_ext >&5
  9695.  
  9696. eval "$as_ac_var=no"
  9697. fi
  9698. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9699. fi
  9700. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9701. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9702. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9703.   cat >>confdefs.h <<_ACEOF
  9704. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9705. _ACEOF
  9706.  
  9707. else
  9708.  
  9709.   echo "$as_me:$LINENO: checking for send in -lsocket" >&5
  9710. echo $ECHO_N "checking for send in -lsocket... $ECHO_C" >&6
  9711. if test "${ac_cv_lib_socket_send+set}" = set; then
  9712.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9713. else
  9714.   ac_check_lib_save_LIBS=$LIBS
  9715. LIBS="-lsocket  $LIBS"
  9716. cat >conftest.$ac_ext <<_ACEOF
  9717. #line $LINENO "configure"
  9718. /* confdefs.h.  */
  9719. _ACEOF
  9720. cat confdefs.h >>conftest.$ac_ext
  9721. cat >>conftest.$ac_ext <<_ACEOF
  9722. /* end confdefs.h.  */
  9723.  
  9724. /* Override any gcc2 internal prototype to avoid an error.  */
  9725. #ifdef __cplusplus
  9726. extern "C"
  9727. #endif
  9728. /* We use char because int might match the return type of a gcc2
  9729.    builtin and then its argument prototype would still apply.  */
  9730. char send ();
  9731. int
  9732. main ()
  9733. {
  9734. send ();
  9735.   ;
  9736.   return 0;
  9737. }
  9738. _ACEOF
  9739. rm -f conftest.$ac_objext conftest$ac_exeext
  9740. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9741.   (eval $ac_link) 2>&5
  9742.   ac_status=$?
  9743.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9744.   (exit $ac_status); } &&
  9745.          { ac_try='test -s conftest$ac_exeext'
  9746.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9747.   (eval $ac_try) 2>&5
  9748.   ac_status=$?
  9749.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9750.   (exit $ac_status); }; }; then
  9751.   ac_cv_lib_socket_send=yes
  9752. else
  9753.   echo "$as_me: failed program was:" >&5
  9754. sed 's/^/| /' conftest.$ac_ext >&5
  9755.  
  9756. ac_cv_lib_socket_send=no
  9757. fi
  9758. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9759. LIBS=$ac_check_lib_save_LIBS
  9760. fi
  9761. echo "$as_me:$LINENO: result: $ac_cv_lib_socket_send" >&5
  9762. echo "${ECHO_T}$ac_cv_lib_socket_send" >&6
  9763. if test $ac_cv_lib_socket_send = yes; then
  9764.   LDFLAGS_access_http="${LDFLAGS_access_http} -lsocket"
  9765.     LDFLAGS_access_mms="${LDFLAGS_access_mms} -lsocket"
  9766.     LDFLAGS_access_udp="${LDFLAGS_access_udp} -lsocket"
  9767.     LDFLAGS_access_ftp="${LDFLAGS_access_ftp} -lsocket"
  9768.     LDFLAGS_sap="${LDFLAGS_sap} -lsocket"
  9769.     LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lsocket"
  9770.  
  9771. fi
  9772.  
  9773. fi
  9774. done
  9775.  
  9776.  
  9777.  
  9778. for ac_func in gethostbyname
  9779. do
  9780. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  9781. echo "$as_me:$LINENO: checking for $ac_func" >&5
  9782. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  9783. if eval "test \"\${$as_ac_var+set}\" = set"; then
  9784.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9785. else
  9786.   cat >conftest.$ac_ext <<_ACEOF
  9787. #line $LINENO "configure"
  9788. /* confdefs.h.  */
  9789. _ACEOF
  9790. cat confdefs.h >>conftest.$ac_ext
  9791. cat >>conftest.$ac_ext <<_ACEOF
  9792. /* end confdefs.h.  */
  9793. /* System header to define __stub macros and hopefully few prototypes,
  9794.     which can conflict with char $ac_func (); below.
  9795.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  9796.     <limits.h> exists even on freestanding compilers.  */
  9797. #ifdef __STDC__
  9798. # include <limits.h>
  9799. #else
  9800. # include <assert.h>
  9801. #endif
  9802. /* Override any gcc2 internal prototype to avoid an error.  */
  9803. #ifdef __cplusplus
  9804. extern "C"
  9805. {
  9806. #endif
  9807. /* We use char because int might match the return type of a gcc2
  9808.    builtin and then its argument prototype would still apply.  */
  9809. char $ac_func ();
  9810. /* The GNU C library defines this for functions which it implements
  9811.     to always fail with ENOSYS.  Some functions are actually named
  9812.     something starting with __ and the normal name is an alias.  */
  9813. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  9814. choke me
  9815. #else
  9816. char (*f) () = $ac_func;
  9817. #endif
  9818. #ifdef __cplusplus
  9819. }
  9820. #endif
  9821.  
  9822. int
  9823. main ()
  9824. {
  9825. return f != $ac_func;
  9826.   ;
  9827.   return 0;
  9828. }
  9829. _ACEOF
  9830. rm -f conftest.$ac_objext conftest$ac_exeext
  9831. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9832.   (eval $ac_link) 2>&5
  9833.   ac_status=$?
  9834.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9835.   (exit $ac_status); } &&
  9836.          { ac_try='test -s conftest$ac_exeext'
  9837.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9838.   (eval $ac_try) 2>&5
  9839.   ac_status=$?
  9840.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9841.   (exit $ac_status); }; }; then
  9842.   eval "$as_ac_var=yes"
  9843. else
  9844.   echo "$as_me: failed program was:" >&5
  9845. sed 's/^/| /' conftest.$ac_ext >&5
  9846.  
  9847. eval "$as_ac_var=no"
  9848. fi
  9849. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9850. fi
  9851. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  9852. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  9853. if test `eval echo '${'$as_ac_var'}'` = yes; then
  9854.   cat >>confdefs.h <<_ACEOF
  9855. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  9856. _ACEOF
  9857.  
  9858. else
  9859.  
  9860.   echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
  9861. echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
  9862. if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
  9863.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9864. else
  9865.   ac_check_lib_save_LIBS=$LIBS
  9866. LIBS="-lnsl  $LIBS"
  9867. cat >conftest.$ac_ext <<_ACEOF
  9868. #line $LINENO "configure"
  9869. /* confdefs.h.  */
  9870. _ACEOF
  9871. cat confdefs.h >>conftest.$ac_ext
  9872. cat >>conftest.$ac_ext <<_ACEOF
  9873. /* end confdefs.h.  */
  9874.  
  9875. /* Override any gcc2 internal prototype to avoid an error.  */
  9876. #ifdef __cplusplus
  9877. extern "C"
  9878. #endif
  9879. /* We use char because int might match the return type of a gcc2
  9880.    builtin and then its argument prototype would still apply.  */
  9881. char gethostbyname ();
  9882. int
  9883. main ()
  9884. {
  9885. gethostbyname ();
  9886.   ;
  9887.   return 0;
  9888. }
  9889. _ACEOF
  9890. rm -f conftest.$ac_objext conftest$ac_exeext
  9891. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9892.   (eval $ac_link) 2>&5
  9893.   ac_status=$?
  9894.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9895.   (exit $ac_status); } &&
  9896.          { ac_try='test -s conftest$ac_exeext'
  9897.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9898.   (eval $ac_try) 2>&5
  9899.   ac_status=$?
  9900.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9901.   (exit $ac_status); }; }; then
  9902.   ac_cv_lib_nsl_gethostbyname=yes
  9903. else
  9904.   echo "$as_me: failed program was:" >&5
  9905. sed 's/^/| /' conftest.$ac_ext >&5
  9906.  
  9907. ac_cv_lib_nsl_gethostbyname=no
  9908. fi
  9909. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9910. LIBS=$ac_check_lib_save_LIBS
  9911. fi
  9912. echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
  9913. echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
  9914. if test $ac_cv_lib_nsl_gethostbyname = yes; then
  9915.   LDFLAGS_ipv4="${LDFLAGS_ipv4} -lnsl" LDFLAGS_httpd="${LDFLAGS_httpd} -lnsl"
  9916. else
  9917.  
  9918.     echo "$as_me:$LINENO: checking for gethostbyname in -lbind" >&5
  9919. echo $ECHO_N "checking for gethostbyname in -lbind... $ECHO_C" >&6
  9920. if test "${ac_cv_lib_bind_gethostbyname+set}" = set; then
  9921.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9922. else
  9923.   ac_check_lib_save_LIBS=$LIBS
  9924. LIBS="-lbind  $LIBS"
  9925. cat >conftest.$ac_ext <<_ACEOF
  9926. #line $LINENO "configure"
  9927. /* confdefs.h.  */
  9928. _ACEOF
  9929. cat confdefs.h >>conftest.$ac_ext
  9930. cat >>conftest.$ac_ext <<_ACEOF
  9931. /* end confdefs.h.  */
  9932.  
  9933. /* Override any gcc2 internal prototype to avoid an error.  */
  9934. #ifdef __cplusplus
  9935. extern "C"
  9936. #endif
  9937. /* We use char because int might match the return type of a gcc2
  9938.    builtin and then its argument prototype would still apply.  */
  9939. char gethostbyname ();
  9940. int
  9941. main ()
  9942. {
  9943. gethostbyname ();
  9944.   ;
  9945.   return 0;
  9946. }
  9947. _ACEOF
  9948. rm -f conftest.$ac_objext conftest$ac_exeext
  9949. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  9950.   (eval $ac_link) 2>&5
  9951.   ac_status=$?
  9952.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9953.   (exit $ac_status); } &&
  9954.          { ac_try='test -s conftest$ac_exeext'
  9955.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  9956.   (eval $ac_try) 2>&5
  9957.   ac_status=$?
  9958.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  9959.   (exit $ac_status); }; }; then
  9960.   ac_cv_lib_bind_gethostbyname=yes
  9961. else
  9962.   echo "$as_me: failed program was:" >&5
  9963. sed 's/^/| /' conftest.$ac_ext >&5
  9964.  
  9965. ac_cv_lib_bind_gethostbyname=no
  9966. fi
  9967. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  9968. LIBS=$ac_check_lib_save_LIBS
  9969. fi
  9970. echo "$as_me:$LINENO: result: $ac_cv_lib_bind_gethostbyname" >&5
  9971. echo "${ECHO_T}$ac_cv_lib_bind_gethostbyname" >&6
  9972. if test $ac_cv_lib_bind_gethostbyname = yes; then
  9973.   LDFLAGS_ipv4="${LDFLAGS_ipv4} -lbind" LDFLAGS_httpd="${LDFLAGS_httpd} -lbind"
  9974. fi
  9975.  
  9976. fi
  9977.  
  9978.  
  9979. fi
  9980. done
  9981.  
  9982.  
  9983. echo "$as_me:$LINENO: checking for socklen_t" >&5
  9984. echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
  9985. if test "${ac_cv_type_socklen_t+set}" = set; then
  9986.   echo $ECHO_N "(cached) $ECHO_C" >&6
  9987. else
  9988.   cat >conftest.$ac_ext <<_ACEOF
  9989. #line $LINENO "configure"
  9990. /* confdefs.h.  */
  9991. _ACEOF
  9992. cat confdefs.h >>conftest.$ac_ext
  9993. cat >>conftest.$ac_ext <<_ACEOF
  9994. /* end confdefs.h.  */
  9995. #include <sys/types.h>
  9996.       #include <sys/socket.h>
  9997. int
  9998. main ()
  9999. {
  10000. socklen_t len = 42; return len;
  10001.   ;
  10002.   return 0;
  10003. }
  10004. _ACEOF
  10005. rm -f conftest.$ac_objext
  10006. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  10007.   (eval $ac_compile) 2>&5
  10008.   ac_status=$?
  10009.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10010.   (exit $ac_status); } &&
  10011.          { ac_try='test -s conftest.$ac_objext'
  10012.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10013.   (eval $ac_try) 2>&5
  10014.   ac_status=$?
  10015.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10016.   (exit $ac_status); }; }; then
  10017.   ac_cv_type_socklen_t=yes
  10018. else
  10019.   echo "$as_me: failed program was:" >&5
  10020. sed 's/^/| /' conftest.$ac_ext >&5
  10021.  
  10022. ac_cv_type_socklen_t=no
  10023. fi
  10024. rm -f conftest.$ac_objext conftest.$ac_ext
  10025. fi
  10026. echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5
  10027. echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
  10028. if test x$ac_cv_type_socklen_t != xno; then
  10029.  
  10030. cat >>confdefs.h <<\_ACEOF
  10031. #define HAVE_SOCKLEN_T 1
  10032. _ACEOF
  10033.  
  10034. fi
  10035.  
  10036.  
  10037. for ac_func in inet_aton
  10038. do
  10039. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  10040. echo "$as_me:$LINENO: checking for $ac_func" >&5
  10041. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  10042. if eval "test \"\${$as_ac_var+set}\" = set"; then
  10043.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10044. else
  10045.   cat >conftest.$ac_ext <<_ACEOF
  10046. #line $LINENO "configure"
  10047. /* confdefs.h.  */
  10048. _ACEOF
  10049. cat confdefs.h >>conftest.$ac_ext
  10050. cat >>conftest.$ac_ext <<_ACEOF
  10051. /* end confdefs.h.  */
  10052. /* System header to define __stub macros and hopefully few prototypes,
  10053.     which can conflict with char $ac_func (); below.
  10054.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  10055.     <limits.h> exists even on freestanding compilers.  */
  10056. #ifdef __STDC__
  10057. # include <limits.h>
  10058. #else
  10059. # include <assert.h>
  10060. #endif
  10061. /* Override any gcc2 internal prototype to avoid an error.  */
  10062. #ifdef __cplusplus
  10063. extern "C"
  10064. {
  10065. #endif
  10066. /* We use char because int might match the return type of a gcc2
  10067.    builtin and then its argument prototype would still apply.  */
  10068. char $ac_func ();
  10069. /* The GNU C library defines this for functions which it implements
  10070.     to always fail with ENOSYS.  Some functions are actually named
  10071.     something starting with __ and the normal name is an alias.  */
  10072. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  10073. choke me
  10074. #else
  10075. char (*f) () = $ac_func;
  10076. #endif
  10077. #ifdef __cplusplus
  10078. }
  10079. #endif
  10080.  
  10081. int
  10082. main ()
  10083. {
  10084. return f != $ac_func;
  10085.   ;
  10086.   return 0;
  10087. }
  10088. _ACEOF
  10089. rm -f conftest.$ac_objext conftest$ac_exeext
  10090. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10091.   (eval $ac_link) 2>&5
  10092.   ac_status=$?
  10093.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10094.   (exit $ac_status); } &&
  10095.          { ac_try='test -s conftest$ac_exeext'
  10096.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10097.   (eval $ac_try) 2>&5
  10098.   ac_status=$?
  10099.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10100.   (exit $ac_status); }; }; then
  10101.   eval "$as_ac_var=yes"
  10102. else
  10103.   echo "$as_me: failed program was:" >&5
  10104. sed 's/^/| /' conftest.$ac_ext >&5
  10105.  
  10106. eval "$as_ac_var=no"
  10107. fi
  10108. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10109. fi
  10110. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  10111. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  10112. if test `eval echo '${'$as_ac_var'}'` = yes; then
  10113.   cat >>confdefs.h <<_ACEOF
  10114. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  10115. _ACEOF
  10116.  
  10117. else
  10118.  
  10119.   echo "$as_me:$LINENO: checking for inet_aton in -lresolv" >&5
  10120. echo $ECHO_N "checking for inet_aton in -lresolv... $ECHO_C" >&6
  10121. if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then
  10122.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10123. else
  10124.   ac_check_lib_save_LIBS=$LIBS
  10125. LIBS="-lresolv  $LIBS"
  10126. cat >conftest.$ac_ext <<_ACEOF
  10127. #line $LINENO "configure"
  10128. /* confdefs.h.  */
  10129. _ACEOF
  10130. cat confdefs.h >>conftest.$ac_ext
  10131. cat >>conftest.$ac_ext <<_ACEOF
  10132. /* end confdefs.h.  */
  10133.  
  10134. /* Override any gcc2 internal prototype to avoid an error.  */
  10135. #ifdef __cplusplus
  10136. extern "C"
  10137. #endif
  10138. /* We use char because int might match the return type of a gcc2
  10139.    builtin and then its argument prototype would still apply.  */
  10140. char inet_aton ();
  10141. int
  10142. main ()
  10143. {
  10144. inet_aton ();
  10145.   ;
  10146.   return 0;
  10147. }
  10148. _ACEOF
  10149. rm -f conftest.$ac_objext conftest$ac_exeext
  10150. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10151.   (eval $ac_link) 2>&5
  10152.   ac_status=$?
  10153.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10154.   (exit $ac_status); } &&
  10155.          { ac_try='test -s conftest$ac_exeext'
  10156.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10157.   (eval $ac_try) 2>&5
  10158.   ac_status=$?
  10159.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10160.   (exit $ac_status); }; }; then
  10161.   ac_cv_lib_resolv_inet_aton=yes
  10162. else
  10163.   echo "$as_me: failed program was:" >&5
  10164. sed 's/^/| /' conftest.$ac_ext >&5
  10165.  
  10166. ac_cv_lib_resolv_inet_aton=no
  10167. fi
  10168. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10169. LIBS=$ac_check_lib_save_LIBS
  10170. fi
  10171. echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_aton" >&5
  10172. echo "${ECHO_T}$ac_cv_lib_resolv_inet_aton" >&6
  10173. if test $ac_cv_lib_resolv_inet_aton = yes; then
  10174.   LDFLAGS_ipv4="${LDFLAGS_ipv4} -lresolv" LDFLAGS_httpd="${LDFLAGS_httpd} -lresolv"
  10175. fi
  10176.  
  10177.  
  10178. fi
  10179. done
  10180.  
  10181.  
  10182. need_getopt=false
  10183.  
  10184. for ac_func in getopt_long
  10185. do
  10186. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  10187. echo "$as_me:$LINENO: checking for $ac_func" >&5
  10188. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  10189. if eval "test \"\${$as_ac_var+set}\" = set"; then
  10190.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10191. else
  10192.   cat >conftest.$ac_ext <<_ACEOF
  10193. #line $LINENO "configure"
  10194. /* confdefs.h.  */
  10195. _ACEOF
  10196. cat confdefs.h >>conftest.$ac_ext
  10197. cat >>conftest.$ac_ext <<_ACEOF
  10198. /* end confdefs.h.  */
  10199. /* System header to define __stub macros and hopefully few prototypes,
  10200.     which can conflict with char $ac_func (); below.
  10201.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  10202.     <limits.h> exists even on freestanding compilers.  */
  10203. #ifdef __STDC__
  10204. # include <limits.h>
  10205. #else
  10206. # include <assert.h>
  10207. #endif
  10208. /* Override any gcc2 internal prototype to avoid an error.  */
  10209. #ifdef __cplusplus
  10210. extern "C"
  10211. {
  10212. #endif
  10213. /* We use char because int might match the return type of a gcc2
  10214.    builtin and then its argument prototype would still apply.  */
  10215. char $ac_func ();
  10216. /* The GNU C library defines this for functions which it implements
  10217.     to always fail with ENOSYS.  Some functions are actually named
  10218.     something starting with __ and the normal name is an alias.  */
  10219. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  10220. choke me
  10221. #else
  10222. char (*f) () = $ac_func;
  10223. #endif
  10224. #ifdef __cplusplus
  10225. }
  10226. #endif
  10227.  
  10228. int
  10229. main ()
  10230. {
  10231. return f != $ac_func;
  10232.   ;
  10233.   return 0;
  10234. }
  10235. _ACEOF
  10236. rm -f conftest.$ac_objext conftest$ac_exeext
  10237. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10238.   (eval $ac_link) 2>&5
  10239.   ac_status=$?
  10240.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10241.   (exit $ac_status); } &&
  10242.          { ac_try='test -s conftest$ac_exeext'
  10243.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10244.   (eval $ac_try) 2>&5
  10245.   ac_status=$?
  10246.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10247.   (exit $ac_status); }; }; then
  10248.   eval "$as_ac_var=yes"
  10249. else
  10250.   echo "$as_me: failed program was:" >&5
  10251. sed 's/^/| /' conftest.$ac_ext >&5
  10252.  
  10253. eval "$as_ac_var=no"
  10254. fi
  10255. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10256. fi
  10257. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  10258. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  10259. if test `eval echo '${'$as_ac_var'}'` = yes; then
  10260.   cat >>confdefs.h <<_ACEOF
  10261. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  10262. _ACEOF
  10263.  
  10264. cat >>confdefs.h <<\_ACEOF
  10265. #define HAVE_GETOPT_LONG 1
  10266. _ACEOF
  10267.  
  10268. else
  10269.    # FreeBSD has a gnugetopt library for this:
  10270.   echo "$as_me:$LINENO: checking for getopt_long in -lgnugetopt" >&5
  10271. echo $ECHO_N "checking for getopt_long in -lgnugetopt... $ECHO_C" >&6
  10272. if test "${ac_cv_lib_gnugetopt_getopt_long+set}" = set; then
  10273.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10274. else
  10275.   ac_check_lib_save_LIBS=$LIBS
  10276. LIBS="-lgnugetopt  $LIBS"
  10277. cat >conftest.$ac_ext <<_ACEOF
  10278. #line $LINENO "configure"
  10279. /* confdefs.h.  */
  10280. _ACEOF
  10281. cat confdefs.h >>conftest.$ac_ext
  10282. cat >>conftest.$ac_ext <<_ACEOF
  10283. /* end confdefs.h.  */
  10284.  
  10285. /* Override any gcc2 internal prototype to avoid an error.  */
  10286. #ifdef __cplusplus
  10287. extern "C"
  10288. #endif
  10289. /* We use char because int might match the return type of a gcc2
  10290.    builtin and then its argument prototype would still apply.  */
  10291. char getopt_long ();
  10292. int
  10293. main ()
  10294. {
  10295. getopt_long ();
  10296.   ;
  10297.   return 0;
  10298. }
  10299. _ACEOF
  10300. rm -f conftest.$ac_objext conftest$ac_exeext
  10301. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10302.   (eval $ac_link) 2>&5
  10303.   ac_status=$?
  10304.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10305.   (exit $ac_status); } &&
  10306.          { ac_try='test -s conftest$ac_exeext'
  10307.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10308.   (eval $ac_try) 2>&5
  10309.   ac_status=$?
  10310.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10311.   (exit $ac_status); }; }; then
  10312.   ac_cv_lib_gnugetopt_getopt_long=yes
  10313. else
  10314.   echo "$as_me: failed program was:" >&5
  10315. sed 's/^/| /' conftest.$ac_ext >&5
  10316.  
  10317. ac_cv_lib_gnugetopt_getopt_long=no
  10318. fi
  10319. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10320. LIBS=$ac_check_lib_save_LIBS
  10321. fi
  10322. echo "$as_me:$LINENO: result: $ac_cv_lib_gnugetopt_getopt_long" >&5
  10323. echo "${ECHO_T}$ac_cv_lib_gnugetopt_getopt_long" >&6
  10324. if test $ac_cv_lib_gnugetopt_getopt_long = yes; then
  10325.  
  10326. cat >>confdefs.h <<\_ACEOF
  10327. #define HAVE_GETOPT_LONG 1
  10328. _ACEOF
  10329.  LDFLAGS_vlc="${LDFLAGS_vlc} -lgnugetopt"
  10330. else
  10331.   need_getopt=:
  10332. fi
  10333.  
  10334. fi
  10335. done
  10336.  
  10337.  
  10338.  
  10339. if ${need_getopt}; then
  10340.   BUILD_GETOPT_TRUE=
  10341.   BUILD_GETOPT_FALSE='#'
  10342. else
  10343.   BUILD_GETOPT_TRUE='#'
  10344.   BUILD_GETOPT_FALSE=
  10345. fi
  10346.  
  10347.  
  10348. echo "$as_me:$LINENO: checking return type of signal handlers" >&5
  10349. echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
  10350. if test "${ac_cv_type_signal+set}" = set; then
  10351.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10352. else
  10353.   cat >conftest.$ac_ext <<_ACEOF
  10354. #line $LINENO "configure"
  10355. /* confdefs.h.  */
  10356. _ACEOF
  10357. cat confdefs.h >>conftest.$ac_ext
  10358. cat >>conftest.$ac_ext <<_ACEOF
  10359. /* end confdefs.h.  */
  10360. #include <sys/types.h>
  10361. #include <signal.h>
  10362. #ifdef signal
  10363. # undef signal
  10364. #endif
  10365. #ifdef __cplusplus
  10366. extern "C" void (*signal (int, void (*)(int)))(int);
  10367. #else
  10368. void (*signal ()) ();
  10369. #endif
  10370.  
  10371. int
  10372. main ()
  10373. {
  10374. int i;
  10375.   ;
  10376.   return 0;
  10377. }
  10378. _ACEOF
  10379. rm -f conftest.$ac_objext
  10380. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  10381.   (eval $ac_compile) 2>&5
  10382.   ac_status=$?
  10383.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10384.   (exit $ac_status); } &&
  10385.          { ac_try='test -s conftest.$ac_objext'
  10386.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10387.   (eval $ac_try) 2>&5
  10388.   ac_status=$?
  10389.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10390.   (exit $ac_status); }; }; then
  10391.   ac_cv_type_signal=void
  10392. else
  10393.   echo "$as_me: failed program was:" >&5
  10394. sed 's/^/| /' conftest.$ac_ext >&5
  10395.  
  10396. ac_cv_type_signal=int
  10397. fi
  10398. rm -f conftest.$ac_objext conftest.$ac_ext
  10399. fi
  10400. echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5
  10401. echo "${ECHO_T}$ac_cv_type_signal" >&6
  10402.  
  10403. cat >>confdefs.h <<_ACEOF
  10404. #define RETSIGTYPE $ac_cv_type_signal
  10405. _ACEOF
  10406.  
  10407.  
  10408. echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
  10409. echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
  10410. if test "${ac_cv_lib_dl_dlopen+set}" = set; then
  10411.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10412. else
  10413.   ac_check_lib_save_LIBS=$LIBS
  10414. LIBS="-ldl  $LIBS"
  10415. cat >conftest.$ac_ext <<_ACEOF
  10416. #line $LINENO "configure"
  10417. /* confdefs.h.  */
  10418. _ACEOF
  10419. cat confdefs.h >>conftest.$ac_ext
  10420. cat >>conftest.$ac_ext <<_ACEOF
  10421. /* end confdefs.h.  */
  10422.  
  10423. /* Override any gcc2 internal prototype to avoid an error.  */
  10424. #ifdef __cplusplus
  10425. extern "C"
  10426. #endif
  10427. /* We use char because int might match the return type of a gcc2
  10428.    builtin and then its argument prototype would still apply.  */
  10429. char dlopen ();
  10430. int
  10431. main ()
  10432. {
  10433. dlopen ();
  10434.   ;
  10435.   return 0;
  10436. }
  10437. _ACEOF
  10438. rm -f conftest.$ac_objext conftest$ac_exeext
  10439. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10440.   (eval $ac_link) 2>&5
  10441.   ac_status=$?
  10442.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10443.   (exit $ac_status); } &&
  10444.          { ac_try='test -s conftest$ac_exeext'
  10445.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10446.   (eval $ac_try) 2>&5
  10447.   ac_status=$?
  10448.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10449.   (exit $ac_status); }; }; then
  10450.   ac_cv_lib_dl_dlopen=yes
  10451. else
  10452.   echo "$as_me: failed program was:" >&5
  10453. sed 's/^/| /' conftest.$ac_ext >&5
  10454.  
  10455. ac_cv_lib_dl_dlopen=no
  10456. fi
  10457. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10458. LIBS=$ac_check_lib_save_LIBS
  10459. fi
  10460. echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
  10461. echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
  10462. if test $ac_cv_lib_dl_dlopen = yes; then
  10463.   LDFLAGS_vlc="${LDFLAGS_vlc} -ldl"
  10464. fi
  10465.  
  10466. echo "$as_me:$LINENO: checking for cos in -lm" >&5
  10467. echo $ECHO_N "checking for cos in -lm... $ECHO_C" >&6
  10468. if test "${ac_cv_lib_m_cos+set}" = set; then
  10469.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10470. else
  10471.   ac_check_lib_save_LIBS=$LIBS
  10472. LIBS="-lm  $LIBS"
  10473. cat >conftest.$ac_ext <<_ACEOF
  10474. #line $LINENO "configure"
  10475. /* confdefs.h.  */
  10476. _ACEOF
  10477. cat confdefs.h >>conftest.$ac_ext
  10478. cat >>conftest.$ac_ext <<_ACEOF
  10479. /* end confdefs.h.  */
  10480.  
  10481. /* Override any gcc2 internal prototype to avoid an error.  */
  10482. #ifdef __cplusplus
  10483. extern "C"
  10484. #endif
  10485. /* We use char because int might match the return type of a gcc2
  10486.    builtin and then its argument prototype would still apply.  */
  10487. char cos ();
  10488. int
  10489. main ()
  10490. {
  10491. cos ();
  10492.   ;
  10493.   return 0;
  10494. }
  10495. _ACEOF
  10496. rm -f conftest.$ac_objext conftest$ac_exeext
  10497. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10498.   (eval $ac_link) 2>&5
  10499.   ac_status=$?
  10500.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10501.   (exit $ac_status); } &&
  10502.          { ac_try='test -s conftest$ac_exeext'
  10503.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10504.   (eval $ac_try) 2>&5
  10505.   ac_status=$?
  10506.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10507.   (exit $ac_status); }; }; then
  10508.   ac_cv_lib_m_cos=yes
  10509. else
  10510.   echo "$as_me: failed program was:" >&5
  10511. sed 's/^/| /' conftest.$ac_ext >&5
  10512.  
  10513. ac_cv_lib_m_cos=no
  10514. fi
  10515. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10516. LIBS=$ac_check_lib_save_LIBS
  10517. fi
  10518. echo "$as_me:$LINENO: result: $ac_cv_lib_m_cos" >&5
  10519. echo "${ECHO_T}$ac_cv_lib_m_cos" >&6
  10520. if test $ac_cv_lib_m_cos = yes; then
  10521.   LDFLAGS_imdct="${LDFLAGS_imdct} -lm"
  10522.   LDFLAGS_adjust="${LDFLAGS_adjust} -lm"
  10523.   LDFLAGS_distort="${LDFLAGS_distort} -lm"
  10524.   LDFLAGS_a52tofloat32="${LDFLAGS_a52tofloat32} -lm"
  10525. fi
  10526.  
  10527. echo "$as_me:$LINENO: checking for pow in -lm" >&5
  10528. echo $ECHO_N "checking for pow in -lm... $ECHO_C" >&6
  10529. if test "${ac_cv_lib_m_pow+set}" = set; then
  10530.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10531. else
  10532.   ac_check_lib_save_LIBS=$LIBS
  10533. LIBS="-lm  $LIBS"
  10534. cat >conftest.$ac_ext <<_ACEOF
  10535. #line $LINENO "configure"
  10536. /* confdefs.h.  */
  10537. _ACEOF
  10538. cat confdefs.h >>conftest.$ac_ext
  10539. cat >>conftest.$ac_ext <<_ACEOF
  10540. /* end confdefs.h.  */
  10541.  
  10542. /* Override any gcc2 internal prototype to avoid an error.  */
  10543. #ifdef __cplusplus
  10544. extern "C"
  10545. #endif
  10546. /* We use char because int might match the return type of a gcc2
  10547.    builtin and then its argument prototype would still apply.  */
  10548. char pow ();
  10549. int
  10550. main ()
  10551. {
  10552. pow ();
  10553.   ;
  10554.   return 0;
  10555. }
  10556. _ACEOF
  10557. rm -f conftest.$ac_objext conftest$ac_exeext
  10558. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10559.   (eval $ac_link) 2>&5
  10560.   ac_status=$?
  10561.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10562.   (exit $ac_status); } &&
  10563.          { ac_try='test -s conftest$ac_exeext'
  10564.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10565.   (eval $ac_try) 2>&5
  10566.   ac_status=$?
  10567.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10568.   (exit $ac_status); }; }; then
  10569.   ac_cv_lib_m_pow=yes
  10570. else
  10571.   echo "$as_me: failed program was:" >&5
  10572. sed 's/^/| /' conftest.$ac_ext >&5
  10573.  
  10574. ac_cv_lib_m_pow=no
  10575. fi
  10576. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10577. LIBS=$ac_check_lib_save_LIBS
  10578. fi
  10579. echo "$as_me:$LINENO: result: $ac_cv_lib_m_pow" >&5
  10580. echo "${ECHO_T}$ac_cv_lib_m_pow" >&6
  10581. if test $ac_cv_lib_m_pow = yes; then
  10582.   LDFLAGS_ffmpeg="${LDFLAGS_ffmpeg} -lm"
  10583.   LDFLAGS_imdct="${LDFLAGS_imdct} -lm"
  10584.   LDFLAGS_imdct3dn="${LDFLAGS_imdct3dn} -lm"
  10585.   LDFLAGS_imdctsse="${LDFLAGS_imdctsse} -lm"
  10586.   LDFLAGS_i420_rgb="${LDFLAGS_i420_rgb} -lm"
  10587.   LDFLAGS_faad="${LDFLAGS_faad} -lm"
  10588.  
  10589. fi
  10590.  
  10591. echo "$as_me:$LINENO: checking for sqrt in -lm" >&5
  10592. echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6
  10593. if test "${ac_cv_lib_m_sqrt+set}" = set; then
  10594.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10595. else
  10596.   ac_check_lib_save_LIBS=$LIBS
  10597. LIBS="-lm  $LIBS"
  10598. cat >conftest.$ac_ext <<_ACEOF
  10599. #line $LINENO "configure"
  10600. /* confdefs.h.  */
  10601. _ACEOF
  10602. cat confdefs.h >>conftest.$ac_ext
  10603. cat >>conftest.$ac_ext <<_ACEOF
  10604. /* end confdefs.h.  */
  10605.  
  10606. /* Override any gcc2 internal prototype to avoid an error.  */
  10607. #ifdef __cplusplus
  10608. extern "C"
  10609. #endif
  10610. /* We use char because int might match the return type of a gcc2
  10611.    builtin and then its argument prototype would still apply.  */
  10612. char sqrt ();
  10613. int
  10614. main ()
  10615. {
  10616. sqrt ();
  10617.   ;
  10618.   return 0;
  10619. }
  10620. _ACEOF
  10621. rm -f conftest.$ac_objext conftest$ac_exeext
  10622. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10623.   (eval $ac_link) 2>&5
  10624.   ac_status=$?
  10625.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10626.   (exit $ac_status); } &&
  10627.          { ac_try='test -s conftest$ac_exeext'
  10628.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10629.   (eval $ac_try) 2>&5
  10630.   ac_status=$?
  10631.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10632.   (exit $ac_status); }; }; then
  10633.   ac_cv_lib_m_sqrt=yes
  10634. else
  10635.   echo "$as_me: failed program was:" >&5
  10636. sed 's/^/| /' conftest.$ac_ext >&5
  10637.  
  10638. ac_cv_lib_m_sqrt=no
  10639. fi
  10640. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10641. LIBS=$ac_check_lib_save_LIBS
  10642. fi
  10643. echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrt" >&5
  10644. echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6
  10645. if test $ac_cv_lib_m_sqrt = yes; then
  10646.   LDFLAGS_headphone_channel_mixer="${LDFLAGS_headphone_channel_mixer} -lm"
  10647.  
  10648. fi
  10649.  
  10650.  
  10651. THREAD_LIB=error
  10652. if test "x${THREAD_LIB}" = "xerror"; then
  10653.   echo "$as_me:$LINENO: checking for main in -lpthread" >&5
  10654. echo $ECHO_N "checking for main in -lpthread... $ECHO_C" >&6
  10655. if test "${ac_cv_lib_pthread_main+set}" = set; then
  10656.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10657. else
  10658.   ac_check_lib_save_LIBS=$LIBS
  10659. LIBS="-lpthread  $LIBS"
  10660. cat >conftest.$ac_ext <<_ACEOF
  10661. #line $LINENO "configure"
  10662. /* confdefs.h.  */
  10663. _ACEOF
  10664. cat confdefs.h >>conftest.$ac_ext
  10665. cat >>conftest.$ac_ext <<_ACEOF
  10666. /* end confdefs.h.  */
  10667.  
  10668.  
  10669. int
  10670. main ()
  10671. {
  10672. main ();
  10673.   ;
  10674.   return 0;
  10675. }
  10676. _ACEOF
  10677. rm -f conftest.$ac_objext conftest$ac_exeext
  10678. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10679.   (eval $ac_link) 2>&5
  10680.   ac_status=$?
  10681.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10682.   (exit $ac_status); } &&
  10683.          { ac_try='test -s conftest$ac_exeext'
  10684.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10685.   (eval $ac_try) 2>&5
  10686.   ac_status=$?
  10687.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10688.   (exit $ac_status); }; }; then
  10689.   ac_cv_lib_pthread_main=yes
  10690. else
  10691.   echo "$as_me: failed program was:" >&5
  10692. sed 's/^/| /' conftest.$ac_ext >&5
  10693.  
  10694. ac_cv_lib_pthread_main=no
  10695. fi
  10696. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10697. LIBS=$ac_check_lib_save_LIBS
  10698. fi
  10699. echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_main" >&5
  10700. echo "${ECHO_T}$ac_cv_lib_pthread_main" >&6
  10701. if test $ac_cv_lib_pthread_main = yes; then
  10702.   THREAD_LIB="-lpthread"
  10703. fi
  10704.  
  10705. fi
  10706. if test "x${THREAD_LIB}" = "xerror"; then
  10707.   echo "$as_me:$LINENO: checking for main in -lpthreads" >&5
  10708. echo $ECHO_N "checking for main in -lpthreads... $ECHO_C" >&6
  10709. if test "${ac_cv_lib_pthreads_main+set}" = set; then
  10710.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10711. else
  10712.   ac_check_lib_save_LIBS=$LIBS
  10713. LIBS="-lpthreads  $LIBS"
  10714. cat >conftest.$ac_ext <<_ACEOF
  10715. #line $LINENO "configure"
  10716. /* confdefs.h.  */
  10717. _ACEOF
  10718. cat confdefs.h >>conftest.$ac_ext
  10719. cat >>conftest.$ac_ext <<_ACEOF
  10720. /* end confdefs.h.  */
  10721.  
  10722.  
  10723. int
  10724. main ()
  10725. {
  10726. main ();
  10727.   ;
  10728.   return 0;
  10729. }
  10730. _ACEOF
  10731. rm -f conftest.$ac_objext conftest$ac_exeext
  10732. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10733.   (eval $ac_link) 2>&5
  10734.   ac_status=$?
  10735.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10736.   (exit $ac_status); } &&
  10737.          { ac_try='test -s conftest$ac_exeext'
  10738.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10739.   (eval $ac_try) 2>&5
  10740.   ac_status=$?
  10741.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10742.   (exit $ac_status); }; }; then
  10743.   ac_cv_lib_pthreads_main=yes
  10744. else
  10745.   echo "$as_me: failed program was:" >&5
  10746. sed 's/^/| /' conftest.$ac_ext >&5
  10747.  
  10748. ac_cv_lib_pthreads_main=no
  10749. fi
  10750. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10751. LIBS=$ac_check_lib_save_LIBS
  10752. fi
  10753. echo "$as_me:$LINENO: result: $ac_cv_lib_pthreads_main" >&5
  10754. echo "${ECHO_T}$ac_cv_lib_pthreads_main" >&6
  10755. if test $ac_cv_lib_pthreads_main = yes; then
  10756.   THREAD_LIB="-lpthreads"
  10757. fi
  10758.  
  10759. fi
  10760. if test "x${THREAD_LIB}" = "xerror"; then
  10761.   echo "$as_me:$LINENO: checking for main in -lc_r" >&5
  10762. echo $ECHO_N "checking for main in -lc_r... $ECHO_C" >&6
  10763. if test "${ac_cv_lib_c_r_main+set}" = set; then
  10764.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10765. else
  10766.   ac_check_lib_save_LIBS=$LIBS
  10767. LIBS="-lc_r  $LIBS"
  10768. cat >conftest.$ac_ext <<_ACEOF
  10769. #line $LINENO "configure"
  10770. /* confdefs.h.  */
  10771. _ACEOF
  10772. cat confdefs.h >>conftest.$ac_ext
  10773. cat >>conftest.$ac_ext <<_ACEOF
  10774. /* end confdefs.h.  */
  10775.  
  10776.  
  10777. int
  10778. main ()
  10779. {
  10780. main ();
  10781.   ;
  10782.   return 0;
  10783. }
  10784. _ACEOF
  10785. rm -f conftest.$ac_objext conftest$ac_exeext
  10786. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10787.   (eval $ac_link) 2>&5
  10788.   ac_status=$?
  10789.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10790.   (exit $ac_status); } &&
  10791.          { ac_try='test -s conftest$ac_exeext'
  10792.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10793.   (eval $ac_try) 2>&5
  10794.   ac_status=$?
  10795.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10796.   (exit $ac_status); }; }; then
  10797.   ac_cv_lib_c_r_main=yes
  10798. else
  10799.   echo "$as_me: failed program was:" >&5
  10800. sed 's/^/| /' conftest.$ac_ext >&5
  10801.  
  10802. ac_cv_lib_c_r_main=no
  10803. fi
  10804. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10805. LIBS=$ac_check_lib_save_LIBS
  10806. fi
  10807. echo "$as_me:$LINENO: result: $ac_cv_lib_c_r_main" >&5
  10808. echo "${ECHO_T}$ac_cv_lib_c_r_main" >&6
  10809. if test $ac_cv_lib_c_r_main = yes; then
  10810.   THREAD_LIB="-lc_r"
  10811. fi
  10812.  
  10813. fi
  10814. if test "x${THREAD_LIB}" = "xerror"; then
  10815.  
  10816. for ac_func in pthread_mutex_lock
  10817. do
  10818. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  10819. echo "$as_me:$LINENO: checking for $ac_func" >&5
  10820. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  10821. if eval "test \"\${$as_ac_var+set}\" = set"; then
  10822.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10823. else
  10824.   cat >conftest.$ac_ext <<_ACEOF
  10825. #line $LINENO "configure"
  10826. /* confdefs.h.  */
  10827. _ACEOF
  10828. cat confdefs.h >>conftest.$ac_ext
  10829. cat >>conftest.$ac_ext <<_ACEOF
  10830. /* end confdefs.h.  */
  10831. /* System header to define __stub macros and hopefully few prototypes,
  10832.     which can conflict with char $ac_func (); below.
  10833.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  10834.     <limits.h> exists even on freestanding compilers.  */
  10835. #ifdef __STDC__
  10836. # include <limits.h>
  10837. #else
  10838. # include <assert.h>
  10839. #endif
  10840. /* Override any gcc2 internal prototype to avoid an error.  */
  10841. #ifdef __cplusplus
  10842. extern "C"
  10843. {
  10844. #endif
  10845. /* We use char because int might match the return type of a gcc2
  10846.    builtin and then its argument prototype would still apply.  */
  10847. char $ac_func ();
  10848. /* The GNU C library defines this for functions which it implements
  10849.     to always fail with ENOSYS.  Some functions are actually named
  10850.     something starting with __ and the normal name is an alias.  */
  10851. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  10852. choke me
  10853. #else
  10854. char (*f) () = $ac_func;
  10855. #endif
  10856. #ifdef __cplusplus
  10857. }
  10858. #endif
  10859.  
  10860. int
  10861. main ()
  10862. {
  10863. return f != $ac_func;
  10864.   ;
  10865.   return 0;
  10866. }
  10867. _ACEOF
  10868. rm -f conftest.$ac_objext conftest$ac_exeext
  10869. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10870.   (eval $ac_link) 2>&5
  10871.   ac_status=$?
  10872.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10873.   (exit $ac_status); } &&
  10874.          { ac_try='test -s conftest$ac_exeext'
  10875.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10876.   (eval $ac_try) 2>&5
  10877.   ac_status=$?
  10878.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10879.   (exit $ac_status); }; }; then
  10880.   eval "$as_ac_var=yes"
  10881. else
  10882.   echo "$as_me: failed program was:" >&5
  10883. sed 's/^/| /' conftest.$ac_ext >&5
  10884.  
  10885. eval "$as_ac_var=no"
  10886. fi
  10887. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10888. fi
  10889. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  10890. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  10891. if test `eval echo '${'$as_ac_var'}'` = yes; then
  10892.   cat >>confdefs.h <<_ACEOF
  10893. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  10894. _ACEOF
  10895.  
  10896. fi
  10897. done
  10898.  
  10899.   THREAD_LIB=""
  10900. fi
  10901.  
  10902. echo "$as_me:$LINENO: checking for cthread_fork in -lthreads" >&5
  10903. echo $ECHO_N "checking for cthread_fork in -lthreads... $ECHO_C" >&6
  10904. if test "${ac_cv_lib_threads_cthread_fork+set}" = set; then
  10905.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10906. else
  10907.   ac_check_lib_save_LIBS=$LIBS
  10908. LIBS="-lthreads  $LIBS"
  10909. cat >conftest.$ac_ext <<_ACEOF
  10910. #line $LINENO "configure"
  10911. /* confdefs.h.  */
  10912. _ACEOF
  10913. cat confdefs.h >>conftest.$ac_ext
  10914. cat >>conftest.$ac_ext <<_ACEOF
  10915. /* end confdefs.h.  */
  10916.  
  10917. /* Override any gcc2 internal prototype to avoid an error.  */
  10918. #ifdef __cplusplus
  10919. extern "C"
  10920. #endif
  10921. /* We use char because int might match the return type of a gcc2
  10922.    builtin and then its argument prototype would still apply.  */
  10923. char cthread_fork ();
  10924. int
  10925. main ()
  10926. {
  10927. cthread_fork ();
  10928.   ;
  10929.   return 0;
  10930. }
  10931. _ACEOF
  10932. rm -f conftest.$ac_objext conftest$ac_exeext
  10933. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10934.   (eval $ac_link) 2>&5
  10935.   ac_status=$?
  10936.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10937.   (exit $ac_status); } &&
  10938.          { ac_try='test -s conftest$ac_exeext'
  10939.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  10940.   (eval $ac_try) 2>&5
  10941.   ac_status=$?
  10942.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  10943.   (exit $ac_status); }; }; then
  10944.   ac_cv_lib_threads_cthread_fork=yes
  10945. else
  10946.   echo "$as_me: failed program was:" >&5
  10947. sed 's/^/| /' conftest.$ac_ext >&5
  10948.  
  10949. ac_cv_lib_threads_cthread_fork=no
  10950. fi
  10951. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  10952. LIBS=$ac_check_lib_save_LIBS
  10953. fi
  10954. echo "$as_me:$LINENO: result: $ac_cv_lib_threads_cthread_fork" >&5
  10955. echo "${ECHO_T}$ac_cv_lib_threads_cthread_fork" >&6
  10956. if test $ac_cv_lib_threads_cthread_fork = yes; then
  10957.   THREAD_LIB="-lthreads"
  10958. fi
  10959.  
  10960.  
  10961. # Check whether --enable-pth or --disable-pth was given.
  10962. if test "${enable_pth+set}" = set; then
  10963.   enableval="$enable_pth"
  10964.    if test "x${enable_pth}" = "xyes"; then
  10965.  
  10966. echo "$as_me:$LINENO: checking for pth_init in -lpth" >&5
  10967. echo $ECHO_N "checking for pth_init in -lpth... $ECHO_C" >&6
  10968. if test "${ac_cv_lib_pth_pth_init+set}" = set; then
  10969.   echo $ECHO_N "(cached) $ECHO_C" >&6
  10970. else
  10971.   ac_check_lib_save_LIBS=$LIBS
  10972. LIBS="-lpth  $LIBS"
  10973. cat >conftest.$ac_ext <<_ACEOF
  10974. #line $LINENO "configure"
  10975. /* confdefs.h.  */
  10976. _ACEOF
  10977. cat confdefs.h >>conftest.$ac_ext
  10978. cat >>conftest.$ac_ext <<_ACEOF
  10979. /* end confdefs.h.  */
  10980.  
  10981. /* Override any gcc2 internal prototype to avoid an error.  */
  10982. #ifdef __cplusplus
  10983. extern "C"
  10984. #endif
  10985. /* We use char because int might match the return type of a gcc2
  10986.    builtin and then its argument prototype would still apply.  */
  10987. char pth_init ();
  10988. int
  10989. main ()
  10990. {
  10991. pth_init ();
  10992.   ;
  10993.   return 0;
  10994. }
  10995. _ACEOF
  10996. rm -f conftest.$ac_objext conftest$ac_exeext
  10997. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  10998.   (eval $ac_link) 2>&5
  10999.   ac_status=$?
  11000.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11001.   (exit $ac_status); } &&
  11002.          { ac_try='test -s conftest$ac_exeext'
  11003.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11004.   (eval $ac_try) 2>&5
  11005.   ac_status=$?
  11006.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11007.   (exit $ac_status); }; }; then
  11008.   ac_cv_lib_pth_pth_init=yes
  11009. else
  11010.   echo "$as_me: failed program was:" >&5
  11011. sed 's/^/| /' conftest.$ac_ext >&5
  11012.  
  11013. ac_cv_lib_pth_pth_init=no
  11014. fi
  11015. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11016. LIBS=$ac_check_lib_save_LIBS
  11017. fi
  11018. echo "$as_me:$LINENO: result: $ac_cv_lib_pth_pth_init" >&5
  11019. echo "${ECHO_T}$ac_cv_lib_pth_pth_init" >&6
  11020. if test $ac_cv_lib_pth_pth_init = yes; then
  11021.   cat >>confdefs.h <<_ACEOF
  11022. #define HAVE_LIBPTH 1
  11023. _ACEOF
  11024.  
  11025.   LIBS="-lpth $LIBS"
  11026.  
  11027. fi
  11028.  
  11029.     echo "$as_me:$LINENO: checking for pth_init in pth.h" >&5
  11030. echo $ECHO_N "checking for pth_init in pth.h... $ECHO_C" >&6
  11031.     cat >conftest.$ac_ext <<_ACEOF
  11032. #line $LINENO "configure"
  11033. /* confdefs.h.  */
  11034. _ACEOF
  11035. cat confdefs.h >>conftest.$ac_ext
  11036. cat >>conftest.$ac_ext <<_ACEOF
  11037. /* end confdefs.h.  */
  11038. #include <pth.h>
  11039.  
  11040. _ACEOF
  11041. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  11042.   $EGREP "pth_init" >/dev/null 2>&1; then
  11043.  
  11044.       echo "$as_me:$LINENO: result: yes" >&5
  11045. echo "${ECHO_T}yes" >&6
  11046.  
  11047. cat >>confdefs.h <<\_ACEOF
  11048. #define PTH_INIT_IN_PTH_H 1
  11049. _ACEOF
  11050.  
  11051.       THREAD_LIB="-lpth"
  11052.  
  11053. else
  11054.  
  11055.       echo "$as_me:$LINENO: result: no" >&5
  11056. echo "${ECHO_T}no" >&6
  11057.  
  11058. fi
  11059. rm -f conftest*
  11060.  
  11061.     fi
  11062.  
  11063. fi;
  11064.  
  11065. # Check whether --enable-st or --disable-st was given.
  11066. if test "${enable_st+set}" = set; then
  11067.   enableval="$enable_st"
  11068.    if test "x${enable_st}" = "xyes"; then
  11069.  
  11070. echo "$as_me:$LINENO: checking for st_init in -lst" >&5
  11071. echo $ECHO_N "checking for st_init in -lst... $ECHO_C" >&6
  11072. if test "${ac_cv_lib_st_st_init+set}" = set; then
  11073.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11074. else
  11075.   ac_check_lib_save_LIBS=$LIBS
  11076. LIBS="-lst  $LIBS"
  11077. cat >conftest.$ac_ext <<_ACEOF
  11078. #line $LINENO "configure"
  11079. /* confdefs.h.  */
  11080. _ACEOF
  11081. cat confdefs.h >>conftest.$ac_ext
  11082. cat >>conftest.$ac_ext <<_ACEOF
  11083. /* end confdefs.h.  */
  11084.  
  11085. /* Override any gcc2 internal prototype to avoid an error.  */
  11086. #ifdef __cplusplus
  11087. extern "C"
  11088. #endif
  11089. /* We use char because int might match the return type of a gcc2
  11090.    builtin and then its argument prototype would still apply.  */
  11091. char st_init ();
  11092. int
  11093. main ()
  11094. {
  11095. st_init ();
  11096.   ;
  11097.   return 0;
  11098. }
  11099. _ACEOF
  11100. rm -f conftest.$ac_objext conftest$ac_exeext
  11101. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  11102.   (eval $ac_link) 2>&5
  11103.   ac_status=$?
  11104.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11105.   (exit $ac_status); } &&
  11106.          { ac_try='test -s conftest$ac_exeext'
  11107.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11108.   (eval $ac_try) 2>&5
  11109.   ac_status=$?
  11110.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11111.   (exit $ac_status); }; }; then
  11112.   ac_cv_lib_st_st_init=yes
  11113. else
  11114.   echo "$as_me: failed program was:" >&5
  11115. sed 's/^/| /' conftest.$ac_ext >&5
  11116.  
  11117. ac_cv_lib_st_st_init=no
  11118. fi
  11119. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11120. LIBS=$ac_check_lib_save_LIBS
  11121. fi
  11122. echo "$as_me:$LINENO: result: $ac_cv_lib_st_st_init" >&5
  11123. echo "${ECHO_T}$ac_cv_lib_st_st_init" >&6
  11124. if test $ac_cv_lib_st_st_init = yes; then
  11125.   cat >>confdefs.h <<_ACEOF
  11126. #define HAVE_LIBST 1
  11127. _ACEOF
  11128.  
  11129.   LIBS="-lst $LIBS"
  11130.  
  11131. fi
  11132.  
  11133.     echo "$as_me:$LINENO: checking for st_init in st.h" >&5
  11134. echo $ECHO_N "checking for st_init in st.h... $ECHO_C" >&6
  11135.     cat >conftest.$ac_ext <<_ACEOF
  11136. #line $LINENO "configure"
  11137. /* confdefs.h.  */
  11138. _ACEOF
  11139. cat confdefs.h >>conftest.$ac_ext
  11140. cat >>conftest.$ac_ext <<_ACEOF
  11141. /* end confdefs.h.  */
  11142. #include <st.h>
  11143.  
  11144. _ACEOF
  11145. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  11146.   $EGREP "st_init" >/dev/null 2>&1; then
  11147.  
  11148.       echo "$as_me:$LINENO: result: yes" >&5
  11149. echo "${ECHO_T}yes" >&6
  11150.  
  11151. cat >>confdefs.h <<\_ACEOF
  11152. #define ST_INIT_IN_ST_H 1
  11153. _ACEOF
  11154.  
  11155.       THREAD_LIB="-lst"
  11156.  
  11157. else
  11158.  
  11159.       echo "$as_me:$LINENO: result: yes" >&5
  11160. echo "${ECHO_T}yes" >&6
  11161.  
  11162. fi
  11163. rm -f conftest*
  11164.  
  11165.     fi
  11166.  
  11167. fi;
  11168.  
  11169. if test "x${SYS}" != "xmingw32"; then
  11170.   LDFLAGS_vlc="${LDFLAGS_vlc} ${THREAD_LIB}"
  11171.   LDFLAGS_plugins="${LDFLAGS_plugins} ${THREAD_LIB}"
  11172. fi
  11173.  
  11174. if test "x${THREAD_LIB}" != "x-lpth" && test "x${THREAD_LIB}" != "x-lst"; then
  11175.     echo "$as_me:$LINENO: checking for sem_init in -lrt" >&5
  11176. echo $ECHO_N "checking for sem_init in -lrt... $ECHO_C" >&6
  11177. if test "${ac_cv_lib_rt_sem_init+set}" = set; then
  11178.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11179. else
  11180.   ac_check_lib_save_LIBS=$LIBS
  11181. LIBS="-lrt  $LIBS"
  11182. cat >conftest.$ac_ext <<_ACEOF
  11183. #line $LINENO "configure"
  11184. /* confdefs.h.  */
  11185. _ACEOF
  11186. cat confdefs.h >>conftest.$ac_ext
  11187. cat >>conftest.$ac_ext <<_ACEOF
  11188. /* end confdefs.h.  */
  11189.  
  11190. /* Override any gcc2 internal prototype to avoid an error.  */
  11191. #ifdef __cplusplus
  11192. extern "C"
  11193. #endif
  11194. /* We use char because int might match the return type of a gcc2
  11195.    builtin and then its argument prototype would still apply.  */
  11196. char sem_init ();
  11197. int
  11198. main ()
  11199. {
  11200. sem_init ();
  11201.   ;
  11202.   return 0;
  11203. }
  11204. _ACEOF
  11205. rm -f conftest.$ac_objext conftest$ac_exeext
  11206. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  11207.   (eval $ac_link) 2>&5
  11208.   ac_status=$?
  11209.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11210.   (exit $ac_status); } &&
  11211.          { ac_try='test -s conftest$ac_exeext'
  11212.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11213.   (eval $ac_try) 2>&5
  11214.   ac_status=$?
  11215.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11216.   (exit $ac_status); }; }; then
  11217.   ac_cv_lib_rt_sem_init=yes
  11218. else
  11219.   echo "$as_me: failed program was:" >&5
  11220. sed 's/^/| /' conftest.$ac_ext >&5
  11221.  
  11222. ac_cv_lib_rt_sem_init=no
  11223. fi
  11224. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11225. LIBS=$ac_check_lib_save_LIBS
  11226. fi
  11227. echo "$as_me:$LINENO: result: $ac_cv_lib_rt_sem_init" >&5
  11228. echo "${ECHO_T}$ac_cv_lib_rt_sem_init" >&6
  11229. if test $ac_cv_lib_rt_sem_init = yes; then
  11230.   LDFLAGS_vlc="${LDFLAGS_vlc} -lrt"
  11231. fi
  11232.  
  11233.  
  11234.   have_nanosleep=false
  11235.  
  11236. for ac_func in nanosleep
  11237. do
  11238. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  11239. echo "$as_me:$LINENO: checking for $ac_func" >&5
  11240. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  11241. if eval "test \"\${$as_ac_var+set}\" = set"; then
  11242.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11243. else
  11244.   cat >conftest.$ac_ext <<_ACEOF
  11245. #line $LINENO "configure"
  11246. /* confdefs.h.  */
  11247. _ACEOF
  11248. cat confdefs.h >>conftest.$ac_ext
  11249. cat >>conftest.$ac_ext <<_ACEOF
  11250. /* end confdefs.h.  */
  11251. /* System header to define __stub macros and hopefully few prototypes,
  11252.     which can conflict with char $ac_func (); below.
  11253.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  11254.     <limits.h> exists even on freestanding compilers.  */
  11255. #ifdef __STDC__
  11256. # include <limits.h>
  11257. #else
  11258. # include <assert.h>
  11259. #endif
  11260. /* Override any gcc2 internal prototype to avoid an error.  */
  11261. #ifdef __cplusplus
  11262. extern "C"
  11263. {
  11264. #endif
  11265. /* We use char because int might match the return type of a gcc2
  11266.    builtin and then its argument prototype would still apply.  */
  11267. char $ac_func ();
  11268. /* The GNU C library defines this for functions which it implements
  11269.     to always fail with ENOSYS.  Some functions are actually named
  11270.     something starting with __ and the normal name is an alias.  */
  11271. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  11272. choke me
  11273. #else
  11274. char (*f) () = $ac_func;
  11275. #endif
  11276. #ifdef __cplusplus
  11277. }
  11278. #endif
  11279.  
  11280. int
  11281. main ()
  11282. {
  11283. return f != $ac_func;
  11284.   ;
  11285.   return 0;
  11286. }
  11287. _ACEOF
  11288. rm -f conftest.$ac_objext conftest$ac_exeext
  11289. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  11290.   (eval $ac_link) 2>&5
  11291.   ac_status=$?
  11292.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11293.   (exit $ac_status); } &&
  11294.          { ac_try='test -s conftest$ac_exeext'
  11295.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11296.   (eval $ac_try) 2>&5
  11297.   ac_status=$?
  11298.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11299.   (exit $ac_status); }; }; then
  11300.   eval "$as_ac_var=yes"
  11301. else
  11302.   echo "$as_me: failed program was:" >&5
  11303. sed 's/^/| /' conftest.$ac_ext >&5
  11304.  
  11305. eval "$as_ac_var=no"
  11306. fi
  11307. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11308. fi
  11309. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  11310. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  11311. if test `eval echo '${'$as_ac_var'}'` = yes; then
  11312.   cat >>confdefs.h <<_ACEOF
  11313. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  11314. _ACEOF
  11315.  have_nanosleep=:
  11316. else
  11317.  
  11318.     echo "$as_me:$LINENO: checking for nanosleep in -lrt" >&5
  11319. echo $ECHO_N "checking for nanosleep in -lrt... $ECHO_C" >&6
  11320. if test "${ac_cv_lib_rt_nanosleep+set}" = set; then
  11321.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11322. else
  11323.   ac_check_lib_save_LIBS=$LIBS
  11324. LIBS="-lrt  $LIBS"
  11325. cat >conftest.$ac_ext <<_ACEOF
  11326. #line $LINENO "configure"
  11327. /* confdefs.h.  */
  11328. _ACEOF
  11329. cat confdefs.h >>conftest.$ac_ext
  11330. cat >>conftest.$ac_ext <<_ACEOF
  11331. /* end confdefs.h.  */
  11332.  
  11333. /* Override any gcc2 internal prototype to avoid an error.  */
  11334. #ifdef __cplusplus
  11335. extern "C"
  11336. #endif
  11337. /* We use char because int might match the return type of a gcc2
  11338.    builtin and then its argument prototype would still apply.  */
  11339. char nanosleep ();
  11340. int
  11341. main ()
  11342. {
  11343. nanosleep ();
  11344.   ;
  11345.   return 0;
  11346. }
  11347. _ACEOF
  11348. rm -f conftest.$ac_objext conftest$ac_exeext
  11349. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  11350.   (eval $ac_link) 2>&5
  11351.   ac_status=$?
  11352.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11353.   (exit $ac_status); } &&
  11354.          { ac_try='test -s conftest$ac_exeext'
  11355.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11356.   (eval $ac_try) 2>&5
  11357.   ac_status=$?
  11358.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11359.   (exit $ac_status); }; }; then
  11360.   ac_cv_lib_rt_nanosleep=yes
  11361. else
  11362.   echo "$as_me: failed program was:" >&5
  11363. sed 's/^/| /' conftest.$ac_ext >&5
  11364.  
  11365. ac_cv_lib_rt_nanosleep=no
  11366. fi
  11367. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11368. LIBS=$ac_check_lib_save_LIBS
  11369. fi
  11370. echo "$as_me:$LINENO: result: $ac_cv_lib_rt_nanosleep" >&5
  11371. echo "${ECHO_T}$ac_cv_lib_rt_nanosleep" >&6
  11372. if test $ac_cv_lib_rt_nanosleep = yes; then
  11373.   LDFLAGS_vlc="${LDFLAGS_vlc} -lrt"; have_nanosleep=:
  11374. else
  11375.   echo "$as_me:$LINENO: checking for nanosleep in -lposix4" >&5
  11376. echo $ECHO_N "checking for nanosleep in -lposix4... $ECHO_C" >&6
  11377. if test "${ac_cv_lib_posix4_nanosleep+set}" = set; then
  11378.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11379. else
  11380.   ac_check_lib_save_LIBS=$LIBS
  11381. LIBS="-lposix4  $LIBS"
  11382. cat >conftest.$ac_ext <<_ACEOF
  11383. #line $LINENO "configure"
  11384. /* confdefs.h.  */
  11385. _ACEOF
  11386. cat confdefs.h >>conftest.$ac_ext
  11387. cat >>conftest.$ac_ext <<_ACEOF
  11388. /* end confdefs.h.  */
  11389.  
  11390. /* Override any gcc2 internal prototype to avoid an error.  */
  11391. #ifdef __cplusplus
  11392. extern "C"
  11393. #endif
  11394. /* We use char because int might match the return type of a gcc2
  11395.    builtin and then its argument prototype would still apply.  */
  11396. char nanosleep ();
  11397. int
  11398. main ()
  11399. {
  11400. nanosleep ();
  11401.   ;
  11402.   return 0;
  11403. }
  11404. _ACEOF
  11405. rm -f conftest.$ac_objext conftest$ac_exeext
  11406. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  11407.   (eval $ac_link) 2>&5
  11408.   ac_status=$?
  11409.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11410.   (exit $ac_status); } &&
  11411.          { ac_try='test -s conftest$ac_exeext'
  11412.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11413.   (eval $ac_try) 2>&5
  11414.   ac_status=$?
  11415.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11416.   (exit $ac_status); }; }; then
  11417.   ac_cv_lib_posix4_nanosleep=yes
  11418. else
  11419.   echo "$as_me: failed program was:" >&5
  11420. sed 's/^/| /' conftest.$ac_ext >&5
  11421.  
  11422. ac_cv_lib_posix4_nanosleep=no
  11423. fi
  11424. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  11425. LIBS=$ac_check_lib_save_LIBS
  11426. fi
  11427. echo "$as_me:$LINENO: result: $ac_cv_lib_posix4_nanosleep" >&5
  11428. echo "${ECHO_T}$ac_cv_lib_posix4_nanosleep" >&6
  11429. if test $ac_cv_lib_posix4_nanosleep = yes; then
  11430.   LDFLAGS_vlc="${LDFLAGS_vlc} -lposix4"; have_nanosleep=:
  11431. fi
  11432.  
  11433.  
  11434. fi
  11435.  
  11436.  
  11437. fi
  11438. done
  11439.  
  11440.   if ${have_nanosleep}; then
  11441.  
  11442. cat >>confdefs.h <<\_ACEOF
  11443. #define HAVE_NANOSLEEP 1
  11444. _ACEOF
  11445.  
  11446.   fi
  11447. fi
  11448.  
  11449. echo "$as_me:$LINENO: checking for pthread_cond_t in pthread.h" >&5
  11450. echo $ECHO_N "checking for pthread_cond_t in pthread.h... $ECHO_C" >&6
  11451. cat >conftest.$ac_ext <<_ACEOF
  11452. #line $LINENO "configure"
  11453. /* confdefs.h.  */
  11454. _ACEOF
  11455. cat confdefs.h >>conftest.$ac_ext
  11456. cat >>conftest.$ac_ext <<_ACEOF
  11457. /* end confdefs.h.  */
  11458. #include <pthread.h>
  11459.  
  11460. _ACEOF
  11461. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  11462.   $EGREP "pthread_cond_t" >/dev/null 2>&1; then
  11463.  
  11464.   echo "$as_me:$LINENO: result: yes" >&5
  11465. echo "${ECHO_T}yes" >&6
  11466.  
  11467. cat >>confdefs.h <<\_ACEOF
  11468. #define PTHREAD_COND_T_IN_PTHREAD_H 1
  11469. _ACEOF
  11470.  
  11471. else
  11472.  
  11473.   echo "$as_me:$LINENO: result: no" >&5
  11474. echo "${ECHO_T}no" >&6
  11475. fi
  11476. rm -f conftest*
  11477.  
  11478.  
  11479. echo "$as_me:$LINENO: checking for pthread_once in pthread.h" >&5
  11480. echo $ECHO_N "checking for pthread_once in pthread.h... $ECHO_C" >&6
  11481. cat >conftest.$ac_ext <<_ACEOF
  11482. #line $LINENO "configure"
  11483. /* confdefs.h.  */
  11484. _ACEOF
  11485. cat confdefs.h >>conftest.$ac_ext
  11486. cat >>conftest.$ac_ext <<_ACEOF
  11487. /* end confdefs.h.  */
  11488. #include <pthread.h>
  11489.  
  11490. _ACEOF
  11491. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  11492.   $EGREP "pthread_once" >/dev/null 2>&1; then
  11493.  
  11494.   echo "$as_me:$LINENO: result: yes" >&5
  11495. echo "${ECHO_T}yes" >&6
  11496.  
  11497. cat >>confdefs.h <<\_ACEOF
  11498. #define PTHREAD_ONCE_IN_PTHREAD_H 1
  11499. _ACEOF
  11500.  
  11501. else
  11502.  
  11503.   echo "$as_me:$LINENO: result: no" >&5
  11504. echo "${ECHO_T}no" >&6
  11505. fi
  11506. rm -f conftest*
  11507.  
  11508.  
  11509. echo "$as_me:$LINENO: checking for strncasecmp in strings.h" >&5
  11510. echo $ECHO_N "checking for strncasecmp in strings.h... $ECHO_C" >&6
  11511. cat >conftest.$ac_ext <<_ACEOF
  11512. #line $LINENO "configure"
  11513. /* confdefs.h.  */
  11514. _ACEOF
  11515. cat confdefs.h >>conftest.$ac_ext
  11516. cat >>conftest.$ac_ext <<_ACEOF
  11517. /* end confdefs.h.  */
  11518. #include <strings.h>
  11519.  
  11520. _ACEOF
  11521. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  11522.   $EGREP "strncasecmp" >/dev/null 2>&1; then
  11523.  
  11524.   echo "$as_me:$LINENO: result: yes" >&5
  11525. echo "${ECHO_T}yes" >&6
  11526.  
  11527. cat >>confdefs.h <<\_ACEOF
  11528. #define STRNCASECMP_IN_STRINGS_H 1
  11529. _ACEOF
  11530.  
  11531. else
  11532.  
  11533.   echo "$as_me:$LINENO: result: no" >&5
  11534. echo "${ECHO_T}no" >&6
  11535. fi
  11536. rm -f conftest*
  11537.  
  11538.  
  11539.  
  11540.  
  11541.  
  11542.  
  11543.  
  11544.  
  11545.  
  11546.  
  11547. for ac_header in signal.h time.h errno.h stdint.h getopt.h strings.h inttypes.h sys/int_types.h
  11548. do
  11549. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  11550. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11551.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  11552. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11553. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11554.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11555. fi
  11556. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11557. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11558. else
  11559.   # Is the header compilable?
  11560. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  11561. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  11562. cat >conftest.$ac_ext <<_ACEOF
  11563. #line $LINENO "configure"
  11564. /* confdefs.h.  */
  11565. _ACEOF
  11566. cat confdefs.h >>conftest.$ac_ext
  11567. cat >>conftest.$ac_ext <<_ACEOF
  11568. /* end confdefs.h.  */
  11569. $ac_includes_default
  11570. #include <$ac_header>
  11571. _ACEOF
  11572. rm -f conftest.$ac_objext
  11573. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  11574.   (eval $ac_compile) 2>&5
  11575.   ac_status=$?
  11576.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11577.   (exit $ac_status); } &&
  11578.          { ac_try='test -s conftest.$ac_objext'
  11579.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11580.   (eval $ac_try) 2>&5
  11581.   ac_status=$?
  11582.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11583.   (exit $ac_status); }; }; then
  11584.   ac_header_compiler=yes
  11585. else
  11586.   echo "$as_me: failed program was:" >&5
  11587. sed 's/^/| /' conftest.$ac_ext >&5
  11588.  
  11589. ac_header_compiler=no
  11590. fi
  11591. rm -f conftest.$ac_objext conftest.$ac_ext
  11592. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  11593. echo "${ECHO_T}$ac_header_compiler" >&6
  11594.  
  11595. # Is the header present?
  11596. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  11597. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  11598. cat >conftest.$ac_ext <<_ACEOF
  11599. #line $LINENO "configure"
  11600. /* confdefs.h.  */
  11601. _ACEOF
  11602. cat confdefs.h >>conftest.$ac_ext
  11603. cat >>conftest.$ac_ext <<_ACEOF
  11604. /* end confdefs.h.  */
  11605. #include <$ac_header>
  11606. _ACEOF
  11607. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  11608.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  11609.   ac_status=$?
  11610.   grep -v '^ *+' conftest.er1 >conftest.err
  11611.   rm -f conftest.er1
  11612.   cat conftest.err >&5
  11613.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11614.   (exit $ac_status); } >/dev/null; then
  11615.   if test -s conftest.err; then
  11616.     ac_cpp_err=$ac_c_preproc_warn_flag
  11617.   else
  11618.     ac_cpp_err=
  11619.   fi
  11620. else
  11621.   ac_cpp_err=yes
  11622. fi
  11623. if test -z "$ac_cpp_err"; then
  11624.   ac_header_preproc=yes
  11625. else
  11626.   echo "$as_me: failed program was:" >&5
  11627. sed 's/^/| /' conftest.$ac_ext >&5
  11628.  
  11629.   ac_header_preproc=no
  11630. fi
  11631. rm -f conftest.err conftest.$ac_ext
  11632. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  11633. echo "${ECHO_T}$ac_header_preproc" >&6
  11634.  
  11635. # So?  What about this header?
  11636. case $ac_header_compiler:$ac_header_preproc in
  11637.   yes:no )
  11638.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  11639. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  11640.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11641. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11642.     (
  11643.       cat <<\_ASBOX
  11644. ## ------------------------------------ ##
  11645. ## Report this to bug-autoconf@gnu.org. ##
  11646. ## ------------------------------------ ##
  11647. _ASBOX
  11648.     ) |
  11649.       sed "s/^/$as_me: WARNING:     /" >&2
  11650.     ;;
  11651.   no:yes )
  11652.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  11653. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  11654.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  11655. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  11656.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11657. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11658.     (
  11659.       cat <<\_ASBOX
  11660. ## ------------------------------------ ##
  11661. ## Report this to bug-autoconf@gnu.org. ##
  11662. ## ------------------------------------ ##
  11663. _ASBOX
  11664.     ) |
  11665.       sed "s/^/$as_me: WARNING:     /" >&2
  11666.     ;;
  11667. esac
  11668. echo "$as_me:$LINENO: checking for $ac_header" >&5
  11669. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11670. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11671.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11672. else
  11673.   eval "$as_ac_Header=$ac_header_preproc"
  11674. fi
  11675. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11676. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11677.  
  11678. fi
  11679. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  11680.   cat >>confdefs.h <<_ACEOF
  11681. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  11682. _ACEOF
  11683.  
  11684. fi
  11685.  
  11686. done
  11687.  
  11688.  
  11689.  
  11690.  
  11691.  
  11692.  
  11693.  
  11694.  
  11695. for ac_header in sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h
  11696. do
  11697. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  11698. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11699.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  11700. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11701. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11702.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11703. fi
  11704. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11705. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11706. else
  11707.   # Is the header compilable?
  11708. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  11709. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  11710. cat >conftest.$ac_ext <<_ACEOF
  11711. #line $LINENO "configure"
  11712. /* confdefs.h.  */
  11713. _ACEOF
  11714. cat confdefs.h >>conftest.$ac_ext
  11715. cat >>conftest.$ac_ext <<_ACEOF
  11716. /* end confdefs.h.  */
  11717. $ac_includes_default
  11718. #include <$ac_header>
  11719. _ACEOF
  11720. rm -f conftest.$ac_objext
  11721. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  11722.   (eval $ac_compile) 2>&5
  11723.   ac_status=$?
  11724.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11725.   (exit $ac_status); } &&
  11726.          { ac_try='test -s conftest.$ac_objext'
  11727.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11728.   (eval $ac_try) 2>&5
  11729.   ac_status=$?
  11730.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11731.   (exit $ac_status); }; }; then
  11732.   ac_header_compiler=yes
  11733. else
  11734.   echo "$as_me: failed program was:" >&5
  11735. sed 's/^/| /' conftest.$ac_ext >&5
  11736.  
  11737. ac_header_compiler=no
  11738. fi
  11739. rm -f conftest.$ac_objext conftest.$ac_ext
  11740. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  11741. echo "${ECHO_T}$ac_header_compiler" >&6
  11742.  
  11743. # Is the header present?
  11744. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  11745. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  11746. cat >conftest.$ac_ext <<_ACEOF
  11747. #line $LINENO "configure"
  11748. /* confdefs.h.  */
  11749. _ACEOF
  11750. cat confdefs.h >>conftest.$ac_ext
  11751. cat >>conftest.$ac_ext <<_ACEOF
  11752. /* end confdefs.h.  */
  11753. #include <$ac_header>
  11754. _ACEOF
  11755. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  11756.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  11757.   ac_status=$?
  11758.   grep -v '^ *+' conftest.er1 >conftest.err
  11759.   rm -f conftest.er1
  11760.   cat conftest.err >&5
  11761.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11762.   (exit $ac_status); } >/dev/null; then
  11763.   if test -s conftest.err; then
  11764.     ac_cpp_err=$ac_c_preproc_warn_flag
  11765.   else
  11766.     ac_cpp_err=
  11767.   fi
  11768. else
  11769.   ac_cpp_err=yes
  11770. fi
  11771. if test -z "$ac_cpp_err"; then
  11772.   ac_header_preproc=yes
  11773. else
  11774.   echo "$as_me: failed program was:" >&5
  11775. sed 's/^/| /' conftest.$ac_ext >&5
  11776.  
  11777.   ac_header_preproc=no
  11778. fi
  11779. rm -f conftest.err conftest.$ac_ext
  11780. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  11781. echo "${ECHO_T}$ac_header_preproc" >&6
  11782.  
  11783. # So?  What about this header?
  11784. case $ac_header_compiler:$ac_header_preproc in
  11785.   yes:no )
  11786.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  11787. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  11788.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11789. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11790.     (
  11791.       cat <<\_ASBOX
  11792. ## ------------------------------------ ##
  11793. ## Report this to bug-autoconf@gnu.org. ##
  11794. ## ------------------------------------ ##
  11795. _ASBOX
  11796.     ) |
  11797.       sed "s/^/$as_me: WARNING:     /" >&2
  11798.     ;;
  11799.   no:yes )
  11800.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  11801. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  11802.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  11803. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  11804.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11805. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11806.     (
  11807.       cat <<\_ASBOX
  11808. ## ------------------------------------ ##
  11809. ## Report this to bug-autoconf@gnu.org. ##
  11810. ## ------------------------------------ ##
  11811. _ASBOX
  11812.     ) |
  11813.       sed "s/^/$as_me: WARNING:     /" >&2
  11814.     ;;
  11815. esac
  11816. echo "$as_me:$LINENO: checking for $ac_header" >&5
  11817. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11818. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11819.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11820. else
  11821.   eval "$as_ac_Header=$ac_header_preproc"
  11822. fi
  11823. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11824. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11825.  
  11826. fi
  11827. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  11828.   cat >>confdefs.h <<_ACEOF
  11829. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  11830. _ACEOF
  11831.  
  11832. fi
  11833.  
  11834. done
  11835.  
  11836.  
  11837.  
  11838. for ac_header in dlfcn.h image.h
  11839. do
  11840. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  11841. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11842.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  11843. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11844. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11845.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11846. fi
  11847. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11848. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11849. else
  11850.   # Is the header compilable?
  11851. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  11852. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  11853. cat >conftest.$ac_ext <<_ACEOF
  11854. #line $LINENO "configure"
  11855. /* confdefs.h.  */
  11856. _ACEOF
  11857. cat confdefs.h >>conftest.$ac_ext
  11858. cat >>conftest.$ac_ext <<_ACEOF
  11859. /* end confdefs.h.  */
  11860. $ac_includes_default
  11861. #include <$ac_header>
  11862. _ACEOF
  11863. rm -f conftest.$ac_objext
  11864. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  11865.   (eval $ac_compile) 2>&5
  11866.   ac_status=$?
  11867.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11868.   (exit $ac_status); } &&
  11869.          { ac_try='test -s conftest.$ac_objext'
  11870.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  11871.   (eval $ac_try) 2>&5
  11872.   ac_status=$?
  11873.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11874.   (exit $ac_status); }; }; then
  11875.   ac_header_compiler=yes
  11876. else
  11877.   echo "$as_me: failed program was:" >&5
  11878. sed 's/^/| /' conftest.$ac_ext >&5
  11879.  
  11880. ac_header_compiler=no
  11881. fi
  11882. rm -f conftest.$ac_objext conftest.$ac_ext
  11883. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  11884. echo "${ECHO_T}$ac_header_compiler" >&6
  11885.  
  11886. # Is the header present?
  11887. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  11888. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  11889. cat >conftest.$ac_ext <<_ACEOF
  11890. #line $LINENO "configure"
  11891. /* confdefs.h.  */
  11892. _ACEOF
  11893. cat confdefs.h >>conftest.$ac_ext
  11894. cat >>conftest.$ac_ext <<_ACEOF
  11895. /* end confdefs.h.  */
  11896. #include <$ac_header>
  11897. _ACEOF
  11898. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  11899.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  11900.   ac_status=$?
  11901.   grep -v '^ *+' conftest.er1 >conftest.err
  11902.   rm -f conftest.er1
  11903.   cat conftest.err >&5
  11904.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  11905.   (exit $ac_status); } >/dev/null; then
  11906.   if test -s conftest.err; then
  11907.     ac_cpp_err=$ac_c_preproc_warn_flag
  11908.   else
  11909.     ac_cpp_err=
  11910.   fi
  11911. else
  11912.   ac_cpp_err=yes
  11913. fi
  11914. if test -z "$ac_cpp_err"; then
  11915.   ac_header_preproc=yes
  11916. else
  11917.   echo "$as_me: failed program was:" >&5
  11918. sed 's/^/| /' conftest.$ac_ext >&5
  11919.  
  11920.   ac_header_preproc=no
  11921. fi
  11922. rm -f conftest.err conftest.$ac_ext
  11923. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  11924. echo "${ECHO_T}$ac_header_preproc" >&6
  11925.  
  11926. # So?  What about this header?
  11927. case $ac_header_compiler:$ac_header_preproc in
  11928.   yes:no )
  11929.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  11930. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  11931.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11932. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11933.     (
  11934.       cat <<\_ASBOX
  11935. ## ------------------------------------ ##
  11936. ## Report this to bug-autoconf@gnu.org. ##
  11937. ## ------------------------------------ ##
  11938. _ASBOX
  11939.     ) |
  11940.       sed "s/^/$as_me: WARNING:     /" >&2
  11941.     ;;
  11942.   no:yes )
  11943.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  11944. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  11945.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  11946. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  11947.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  11948. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  11949.     (
  11950.       cat <<\_ASBOX
  11951. ## ------------------------------------ ##
  11952. ## Report this to bug-autoconf@gnu.org. ##
  11953. ## ------------------------------------ ##
  11954. _ASBOX
  11955.     ) |
  11956.       sed "s/^/$as_me: WARNING:     /" >&2
  11957.     ;;
  11958. esac
  11959. echo "$as_me:$LINENO: checking for $ac_header" >&5
  11960. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11961. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11962.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11963. else
  11964.   eval "$as_ac_Header=$ac_header_preproc"
  11965. fi
  11966. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11967. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11968.  
  11969. fi
  11970. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  11971.   cat >>confdefs.h <<_ACEOF
  11972. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  11973. _ACEOF
  11974.  
  11975. fi
  11976.  
  11977. done
  11978.  
  11979.  
  11980.  
  11981.  
  11982.  
  11983. for ac_header in arpa/inet.h net/if.h netinet/in.h sys/socket.h
  11984. do
  11985. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  11986. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11987.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  11988. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  11989. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  11990.   echo $ECHO_N "(cached) $ECHO_C" >&6
  11991. fi
  11992. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  11993. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  11994. else
  11995.   # Is the header compilable?
  11996. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  11997. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  11998. cat >conftest.$ac_ext <<_ACEOF
  11999. #line $LINENO "configure"
  12000. /* confdefs.h.  */
  12001. _ACEOF
  12002. cat confdefs.h >>conftest.$ac_ext
  12003. cat >>conftest.$ac_ext <<_ACEOF
  12004. /* end confdefs.h.  */
  12005. $ac_includes_default
  12006. #include <$ac_header>
  12007. _ACEOF
  12008. rm -f conftest.$ac_objext
  12009. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12010.   (eval $ac_compile) 2>&5
  12011.   ac_status=$?
  12012.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12013.   (exit $ac_status); } &&
  12014.          { ac_try='test -s conftest.$ac_objext'
  12015.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12016.   (eval $ac_try) 2>&5
  12017.   ac_status=$?
  12018.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12019.   (exit $ac_status); }; }; then
  12020.   ac_header_compiler=yes
  12021. else
  12022.   echo "$as_me: failed program was:" >&5
  12023. sed 's/^/| /' conftest.$ac_ext >&5
  12024.  
  12025. ac_header_compiler=no
  12026. fi
  12027. rm -f conftest.$ac_objext conftest.$ac_ext
  12028. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  12029. echo "${ECHO_T}$ac_header_compiler" >&6
  12030.  
  12031. # Is the header present?
  12032. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  12033. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  12034. cat >conftest.$ac_ext <<_ACEOF
  12035. #line $LINENO "configure"
  12036. /* confdefs.h.  */
  12037. _ACEOF
  12038. cat confdefs.h >>conftest.$ac_ext
  12039. cat >>conftest.$ac_ext <<_ACEOF
  12040. /* end confdefs.h.  */
  12041. #include <$ac_header>
  12042. _ACEOF
  12043. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  12044.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  12045.   ac_status=$?
  12046.   grep -v '^ *+' conftest.er1 >conftest.err
  12047.   rm -f conftest.er1
  12048.   cat conftest.err >&5
  12049.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12050.   (exit $ac_status); } >/dev/null; then
  12051.   if test -s conftest.err; then
  12052.     ac_cpp_err=$ac_c_preproc_warn_flag
  12053.   else
  12054.     ac_cpp_err=
  12055.   fi
  12056. else
  12057.   ac_cpp_err=yes
  12058. fi
  12059. if test -z "$ac_cpp_err"; then
  12060.   ac_header_preproc=yes
  12061. else
  12062.   echo "$as_me: failed program was:" >&5
  12063. sed 's/^/| /' conftest.$ac_ext >&5
  12064.  
  12065.   ac_header_preproc=no
  12066. fi
  12067. rm -f conftest.err conftest.$ac_ext
  12068. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  12069. echo "${ECHO_T}$ac_header_preproc" >&6
  12070.  
  12071. # So?  What about this header?
  12072. case $ac_header_compiler:$ac_header_preproc in
  12073.   yes:no )
  12074.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  12075. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  12076.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12077. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12078.     (
  12079.       cat <<\_ASBOX
  12080. ## ------------------------------------ ##
  12081. ## Report this to bug-autoconf@gnu.org. ##
  12082. ## ------------------------------------ ##
  12083. _ASBOX
  12084.     ) |
  12085.       sed "s/^/$as_me: WARNING:     /" >&2
  12086.     ;;
  12087.   no:yes )
  12088.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  12089. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  12090.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  12091. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  12092.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12093. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12094.     (
  12095.       cat <<\_ASBOX
  12096. ## ------------------------------------ ##
  12097. ## Report this to bug-autoconf@gnu.org. ##
  12098. ## ------------------------------------ ##
  12099. _ASBOX
  12100.     ) |
  12101.       sed "s/^/$as_me: WARNING:     /" >&2
  12102.     ;;
  12103. esac
  12104. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12105. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12106. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12107.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12108. else
  12109.   eval "$as_ac_Header=$ac_header_preproc"
  12110. fi
  12111. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12112. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12113.  
  12114. fi
  12115. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12116.   cat >>confdefs.h <<_ACEOF
  12117. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12118. _ACEOF
  12119.  
  12120. fi
  12121.  
  12122. done
  12123.  
  12124.  
  12125.  
  12126. for ac_header in machine/param.h sys/shm.h
  12127. do
  12128. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  12129. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12130.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  12131. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12132. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12133.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12134. fi
  12135. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12136. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12137. else
  12138.   # Is the header compilable?
  12139. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  12140. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  12141. cat >conftest.$ac_ext <<_ACEOF
  12142. #line $LINENO "configure"
  12143. /* confdefs.h.  */
  12144. _ACEOF
  12145. cat confdefs.h >>conftest.$ac_ext
  12146. cat >>conftest.$ac_ext <<_ACEOF
  12147. /* end confdefs.h.  */
  12148. $ac_includes_default
  12149. #include <$ac_header>
  12150. _ACEOF
  12151. rm -f conftest.$ac_objext
  12152. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12153.   (eval $ac_compile) 2>&5
  12154.   ac_status=$?
  12155.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12156.   (exit $ac_status); } &&
  12157.          { ac_try='test -s conftest.$ac_objext'
  12158.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12159.   (eval $ac_try) 2>&5
  12160.   ac_status=$?
  12161.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12162.   (exit $ac_status); }; }; then
  12163.   ac_header_compiler=yes
  12164. else
  12165.   echo "$as_me: failed program was:" >&5
  12166. sed 's/^/| /' conftest.$ac_ext >&5
  12167.  
  12168. ac_header_compiler=no
  12169. fi
  12170. rm -f conftest.$ac_objext conftest.$ac_ext
  12171. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  12172. echo "${ECHO_T}$ac_header_compiler" >&6
  12173.  
  12174. # Is the header present?
  12175. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  12176. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  12177. cat >conftest.$ac_ext <<_ACEOF
  12178. #line $LINENO "configure"
  12179. /* confdefs.h.  */
  12180. _ACEOF
  12181. cat confdefs.h >>conftest.$ac_ext
  12182. cat >>conftest.$ac_ext <<_ACEOF
  12183. /* end confdefs.h.  */
  12184. #include <$ac_header>
  12185. _ACEOF
  12186. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  12187.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  12188.   ac_status=$?
  12189.   grep -v '^ *+' conftest.er1 >conftest.err
  12190.   rm -f conftest.er1
  12191.   cat conftest.err >&5
  12192.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12193.   (exit $ac_status); } >/dev/null; then
  12194.   if test -s conftest.err; then
  12195.     ac_cpp_err=$ac_c_preproc_warn_flag
  12196.   else
  12197.     ac_cpp_err=
  12198.   fi
  12199. else
  12200.   ac_cpp_err=yes
  12201. fi
  12202. if test -z "$ac_cpp_err"; then
  12203.   ac_header_preproc=yes
  12204. else
  12205.   echo "$as_me: failed program was:" >&5
  12206. sed 's/^/| /' conftest.$ac_ext >&5
  12207.  
  12208.   ac_header_preproc=no
  12209. fi
  12210. rm -f conftest.err conftest.$ac_ext
  12211. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  12212. echo "${ECHO_T}$ac_header_preproc" >&6
  12213.  
  12214. # So?  What about this header?
  12215. case $ac_header_compiler:$ac_header_preproc in
  12216.   yes:no )
  12217.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  12218. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  12219.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12220. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12221.     (
  12222.       cat <<\_ASBOX
  12223. ## ------------------------------------ ##
  12224. ## Report this to bug-autoconf@gnu.org. ##
  12225. ## ------------------------------------ ##
  12226. _ASBOX
  12227.     ) |
  12228.       sed "s/^/$as_me: WARNING:     /" >&2
  12229.     ;;
  12230.   no:yes )
  12231.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  12232. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  12233.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  12234. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  12235.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12236. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12237.     (
  12238.       cat <<\_ASBOX
  12239. ## ------------------------------------ ##
  12240. ## Report this to bug-autoconf@gnu.org. ##
  12241. ## ------------------------------------ ##
  12242. _ASBOX
  12243.     ) |
  12244.       sed "s/^/$as_me: WARNING:     /" >&2
  12245.     ;;
  12246. esac
  12247. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12248. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12249. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12250.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12251. else
  12252.   eval "$as_ac_Header=$ac_header_preproc"
  12253. fi
  12254. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12255. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12256.  
  12257. fi
  12258. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12259.   cat >>confdefs.h <<_ACEOF
  12260. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12261. _ACEOF
  12262.  
  12263. fi
  12264.  
  12265. done
  12266.  
  12267.  
  12268. for ac_header in linux/version.h
  12269. do
  12270. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  12271. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12272.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  12273. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12274. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12275.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12276. fi
  12277. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12278. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12279. else
  12280.   # Is the header compilable?
  12281. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  12282. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  12283. cat >conftest.$ac_ext <<_ACEOF
  12284. #line $LINENO "configure"
  12285. /* confdefs.h.  */
  12286. _ACEOF
  12287. cat confdefs.h >>conftest.$ac_ext
  12288. cat >>conftest.$ac_ext <<_ACEOF
  12289. /* end confdefs.h.  */
  12290. $ac_includes_default
  12291. #include <$ac_header>
  12292. _ACEOF
  12293. rm -f conftest.$ac_objext
  12294. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12295.   (eval $ac_compile) 2>&5
  12296.   ac_status=$?
  12297.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12298.   (exit $ac_status); } &&
  12299.          { ac_try='test -s conftest.$ac_objext'
  12300.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12301.   (eval $ac_try) 2>&5
  12302.   ac_status=$?
  12303.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12304.   (exit $ac_status); }; }; then
  12305.   ac_header_compiler=yes
  12306. else
  12307.   echo "$as_me: failed program was:" >&5
  12308. sed 's/^/| /' conftest.$ac_ext >&5
  12309.  
  12310. ac_header_compiler=no
  12311. fi
  12312. rm -f conftest.$ac_objext conftest.$ac_ext
  12313. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  12314. echo "${ECHO_T}$ac_header_compiler" >&6
  12315.  
  12316. # Is the header present?
  12317. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  12318. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  12319. cat >conftest.$ac_ext <<_ACEOF
  12320. #line $LINENO "configure"
  12321. /* confdefs.h.  */
  12322. _ACEOF
  12323. cat confdefs.h >>conftest.$ac_ext
  12324. cat >>conftest.$ac_ext <<_ACEOF
  12325. /* end confdefs.h.  */
  12326. #include <$ac_header>
  12327. _ACEOF
  12328. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  12329.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  12330.   ac_status=$?
  12331.   grep -v '^ *+' conftest.er1 >conftest.err
  12332.   rm -f conftest.er1
  12333.   cat conftest.err >&5
  12334.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12335.   (exit $ac_status); } >/dev/null; then
  12336.   if test -s conftest.err; then
  12337.     ac_cpp_err=$ac_c_preproc_warn_flag
  12338.   else
  12339.     ac_cpp_err=
  12340.   fi
  12341. else
  12342.   ac_cpp_err=yes
  12343. fi
  12344. if test -z "$ac_cpp_err"; then
  12345.   ac_header_preproc=yes
  12346. else
  12347.   echo "$as_me: failed program was:" >&5
  12348. sed 's/^/| /' conftest.$ac_ext >&5
  12349.  
  12350.   ac_header_preproc=no
  12351. fi
  12352. rm -f conftest.err conftest.$ac_ext
  12353. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  12354. echo "${ECHO_T}$ac_header_preproc" >&6
  12355.  
  12356. # So?  What about this header?
  12357. case $ac_header_compiler:$ac_header_preproc in
  12358.   yes:no )
  12359.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  12360. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  12361.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12362. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12363.     (
  12364.       cat <<\_ASBOX
  12365. ## ------------------------------------ ##
  12366. ## Report this to bug-autoconf@gnu.org. ##
  12367. ## ------------------------------------ ##
  12368. _ASBOX
  12369.     ) |
  12370.       sed "s/^/$as_me: WARNING:     /" >&2
  12371.     ;;
  12372.   no:yes )
  12373.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  12374. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  12375.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  12376. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  12377.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12378. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12379.     (
  12380.       cat <<\_ASBOX
  12381. ## ------------------------------------ ##
  12382. ## Report this to bug-autoconf@gnu.org. ##
  12383. ## ------------------------------------ ##
  12384. _ASBOX
  12385.     ) |
  12386.       sed "s/^/$as_me: WARNING:     /" >&2
  12387.     ;;
  12388. esac
  12389. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12390. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12391. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12392.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12393. else
  12394.   eval "$as_ac_Header=$ac_header_preproc"
  12395. fi
  12396. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12397. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12398.  
  12399. fi
  12400. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12401.   cat >>confdefs.h <<_ACEOF
  12402. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12403. _ACEOF
  12404.  
  12405. fi
  12406.  
  12407. done
  12408.  
  12409.  
  12410. echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5
  12411. echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
  12412. if test "${ac_cv_header_time+set}" = set; then
  12413.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12414. else
  12415.   cat >conftest.$ac_ext <<_ACEOF
  12416. #line $LINENO "configure"
  12417. /* confdefs.h.  */
  12418. _ACEOF
  12419. cat confdefs.h >>conftest.$ac_ext
  12420. cat >>conftest.$ac_ext <<_ACEOF
  12421. /* end confdefs.h.  */
  12422. #include <sys/types.h>
  12423. #include <sys/time.h>
  12424. #include <time.h>
  12425.  
  12426. int
  12427. main ()
  12428. {
  12429. if ((struct tm *) 0)
  12430. return 0;
  12431.   ;
  12432.   return 0;
  12433. }
  12434. _ACEOF
  12435. rm -f conftest.$ac_objext
  12436. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12437.   (eval $ac_compile) 2>&5
  12438.   ac_status=$?
  12439.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12440.   (exit $ac_status); } &&
  12441.          { ac_try='test -s conftest.$ac_objext'
  12442.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12443.   (eval $ac_try) 2>&5
  12444.   ac_status=$?
  12445.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12446.   (exit $ac_status); }; }; then
  12447.   ac_cv_header_time=yes
  12448. else
  12449.   echo "$as_me: failed program was:" >&5
  12450. sed 's/^/| /' conftest.$ac_ext >&5
  12451.  
  12452. ac_cv_header_time=no
  12453. fi
  12454. rm -f conftest.$ac_objext conftest.$ac_ext
  12455. fi
  12456. echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5
  12457. echo "${ECHO_T}$ac_cv_header_time" >&6
  12458. if test $ac_cv_header_time = yes; then
  12459.  
  12460. cat >>confdefs.h <<\_ACEOF
  12461. #define TIME_WITH_SYS_TIME 1
  12462. _ACEOF
  12463.  
  12464. fi
  12465.  
  12466.  
  12467. need_dirent=false
  12468.  
  12469. for ac_header in dirent.h
  12470. do
  12471. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  12472. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12473.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  12474. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12475. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12476.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12477. fi
  12478. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12479. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12480. else
  12481.   # Is the header compilable?
  12482. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  12483. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  12484. cat >conftest.$ac_ext <<_ACEOF
  12485. #line $LINENO "configure"
  12486. /* confdefs.h.  */
  12487. _ACEOF
  12488. cat confdefs.h >>conftest.$ac_ext
  12489. cat >>conftest.$ac_ext <<_ACEOF
  12490. /* end confdefs.h.  */
  12491. $ac_includes_default
  12492. #include <$ac_header>
  12493. _ACEOF
  12494. rm -f conftest.$ac_objext
  12495. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12496.   (eval $ac_compile) 2>&5
  12497.   ac_status=$?
  12498.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12499.   (exit $ac_status); } &&
  12500.          { ac_try='test -s conftest.$ac_objext'
  12501.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12502.   (eval $ac_try) 2>&5
  12503.   ac_status=$?
  12504.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12505.   (exit $ac_status); }; }; then
  12506.   ac_header_compiler=yes
  12507. else
  12508.   echo "$as_me: failed program was:" >&5
  12509. sed 's/^/| /' conftest.$ac_ext >&5
  12510.  
  12511. ac_header_compiler=no
  12512. fi
  12513. rm -f conftest.$ac_objext conftest.$ac_ext
  12514. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  12515. echo "${ECHO_T}$ac_header_compiler" >&6
  12516.  
  12517. # Is the header present?
  12518. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  12519. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  12520. cat >conftest.$ac_ext <<_ACEOF
  12521. #line $LINENO "configure"
  12522. /* confdefs.h.  */
  12523. _ACEOF
  12524. cat confdefs.h >>conftest.$ac_ext
  12525. cat >>conftest.$ac_ext <<_ACEOF
  12526. /* end confdefs.h.  */
  12527. #include <$ac_header>
  12528. _ACEOF
  12529. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  12530.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  12531.   ac_status=$?
  12532.   grep -v '^ *+' conftest.er1 >conftest.err
  12533.   rm -f conftest.er1
  12534.   cat conftest.err >&5
  12535.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12536.   (exit $ac_status); } >/dev/null; then
  12537.   if test -s conftest.err; then
  12538.     ac_cpp_err=$ac_c_preproc_warn_flag
  12539.   else
  12540.     ac_cpp_err=
  12541.   fi
  12542. else
  12543.   ac_cpp_err=yes
  12544. fi
  12545. if test -z "$ac_cpp_err"; then
  12546.   ac_header_preproc=yes
  12547. else
  12548.   echo "$as_me: failed program was:" >&5
  12549. sed 's/^/| /' conftest.$ac_ext >&5
  12550.  
  12551.   ac_header_preproc=no
  12552. fi
  12553. rm -f conftest.err conftest.$ac_ext
  12554. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  12555. echo "${ECHO_T}$ac_header_preproc" >&6
  12556.  
  12557. # So?  What about this header?
  12558. case $ac_header_compiler:$ac_header_preproc in
  12559.   yes:no )
  12560.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  12561. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  12562.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12563. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12564.     (
  12565.       cat <<\_ASBOX
  12566. ## ------------------------------------ ##
  12567. ## Report this to bug-autoconf@gnu.org. ##
  12568. ## ------------------------------------ ##
  12569. _ASBOX
  12570.     ) |
  12571.       sed "s/^/$as_me: WARNING:     /" >&2
  12572.     ;;
  12573.   no:yes )
  12574.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  12575. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  12576.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  12577. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  12578.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12579. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12580.     (
  12581.       cat <<\_ASBOX
  12582. ## ------------------------------------ ##
  12583. ## Report this to bug-autoconf@gnu.org. ##
  12584. ## ------------------------------------ ##
  12585. _ASBOX
  12586.     ) |
  12587.       sed "s/^/$as_me: WARNING:     /" >&2
  12588.     ;;
  12589. esac
  12590. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12591. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12592. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12593.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12594. else
  12595.   eval "$as_ac_Header=$ac_header_preproc"
  12596. fi
  12597. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12598. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12599.  
  12600. fi
  12601. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12602.   cat >>confdefs.h <<_ACEOF
  12603. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12604. _ACEOF
  12605.  
  12606. else
  12607.   need_dirent=:
  12608. fi
  12609.  
  12610. done
  12611.  
  12612.  
  12613.  
  12614. if ${need_dirent}; then
  12615.   BUILD_DIRENT_TRUE=
  12616.   BUILD_DIRENT_FALSE='#'
  12617. else
  12618.   BUILD_DIRENT_TRUE='#'
  12619.   BUILD_DIRENT_FALSE=
  12620. fi
  12621.  
  12622.  
  12623. echo "$as_me:$LINENO: checking for nanosleep in time.h" >&5
  12624. echo $ECHO_N "checking for nanosleep in time.h... $ECHO_C" >&6
  12625. cat >conftest.$ac_ext <<_ACEOF
  12626. #line $LINENO "configure"
  12627. /* confdefs.h.  */
  12628. _ACEOF
  12629. cat confdefs.h >>conftest.$ac_ext
  12630. cat >>conftest.$ac_ext <<_ACEOF
  12631. /* end confdefs.h.  */
  12632. #include <time.h>
  12633.  
  12634. _ACEOF
  12635. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  12636.   $EGREP "nanosleep" >/dev/null 2>&1; then
  12637.  
  12638.   echo "$as_me:$LINENO: result: yes" >&5
  12639. echo "${ECHO_T}yes" >&6
  12640.  
  12641. cat >>confdefs.h <<\_ACEOF
  12642. #define HAVE_DECL_NANOSLEEP 1
  12643. _ACEOF
  12644.  
  12645.  
  12646. else
  12647.  
  12648.   echo "$as_me:$LINENO: result: no" >&5
  12649. echo "${ECHO_T}no" >&6
  12650.  
  12651. fi
  12652. rm -f conftest*
  12653.  
  12654.  
  12655. echo "$as_me:$LINENO: checking for timespec in sys/time.h" >&5
  12656. echo $ECHO_N "checking for timespec in sys/time.h... $ECHO_C" >&6
  12657. cat >conftest.$ac_ext <<_ACEOF
  12658. #line $LINENO "configure"
  12659. /* confdefs.h.  */
  12660. _ACEOF
  12661. cat confdefs.h >>conftest.$ac_ext
  12662. cat >>conftest.$ac_ext <<_ACEOF
  12663. /* end confdefs.h.  */
  12664. #include <sys/time.h>
  12665.  
  12666. _ACEOF
  12667. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  12668.   $EGREP "timespec" >/dev/null 2>&1; then
  12669.  
  12670.   echo "$as_me:$LINENO: result: yes" >&5
  12671. echo "${ECHO_T}yes" >&6
  12672.  
  12673. cat >>confdefs.h <<\_ACEOF
  12674. #define HAVE_STRUCT_TIMESPEC 1
  12675. _ACEOF
  12676.  
  12677.  
  12678. else
  12679.  
  12680.   echo "$as_me:$LINENO: result: no" >&5
  12681. echo "${ECHO_T}no" >&6
  12682.  
  12683. fi
  12684. rm -f conftest*
  12685.  
  12686.  
  12687.  
  12688.  
  12689.  
  12690.  
  12691. for ac_header in cthreads.h pthread.h kernel/scheduler.h kernel/OS.h
  12692. do
  12693. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  12694. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12695.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  12696. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12697. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12698.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12699. fi
  12700. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12701. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12702. else
  12703.   # Is the header compilable?
  12704. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  12705. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  12706. cat >conftest.$ac_ext <<_ACEOF
  12707. #line $LINENO "configure"
  12708. /* confdefs.h.  */
  12709. _ACEOF
  12710. cat confdefs.h >>conftest.$ac_ext
  12711. cat >>conftest.$ac_ext <<_ACEOF
  12712. /* end confdefs.h.  */
  12713. $ac_includes_default
  12714. #include <$ac_header>
  12715. _ACEOF
  12716. rm -f conftest.$ac_objext
  12717. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12718.   (eval $ac_compile) 2>&5
  12719.   ac_status=$?
  12720.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12721.   (exit $ac_status); } &&
  12722.          { ac_try='test -s conftest.$ac_objext'
  12723.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12724.   (eval $ac_try) 2>&5
  12725.   ac_status=$?
  12726.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12727.   (exit $ac_status); }; }; then
  12728.   ac_header_compiler=yes
  12729. else
  12730.   echo "$as_me: failed program was:" >&5
  12731. sed 's/^/| /' conftest.$ac_ext >&5
  12732.  
  12733. ac_header_compiler=no
  12734. fi
  12735. rm -f conftest.$ac_objext conftest.$ac_ext
  12736. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  12737. echo "${ECHO_T}$ac_header_compiler" >&6
  12738.  
  12739. # Is the header present?
  12740. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  12741. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  12742. cat >conftest.$ac_ext <<_ACEOF
  12743. #line $LINENO "configure"
  12744. /* confdefs.h.  */
  12745. _ACEOF
  12746. cat confdefs.h >>conftest.$ac_ext
  12747. cat >>conftest.$ac_ext <<_ACEOF
  12748. /* end confdefs.h.  */
  12749. #include <$ac_header>
  12750. _ACEOF
  12751. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  12752.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  12753.   ac_status=$?
  12754.   grep -v '^ *+' conftest.er1 >conftest.err
  12755.   rm -f conftest.er1
  12756.   cat conftest.err >&5
  12757.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12758.   (exit $ac_status); } >/dev/null; then
  12759.   if test -s conftest.err; then
  12760.     ac_cpp_err=$ac_c_preproc_warn_flag
  12761.   else
  12762.     ac_cpp_err=
  12763.   fi
  12764. else
  12765.   ac_cpp_err=yes
  12766. fi
  12767. if test -z "$ac_cpp_err"; then
  12768.   ac_header_preproc=yes
  12769. else
  12770.   echo "$as_me: failed program was:" >&5
  12771. sed 's/^/| /' conftest.$ac_ext >&5
  12772.  
  12773.   ac_header_preproc=no
  12774. fi
  12775. rm -f conftest.err conftest.$ac_ext
  12776. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  12777. echo "${ECHO_T}$ac_header_preproc" >&6
  12778.  
  12779. # So?  What about this header?
  12780. case $ac_header_compiler:$ac_header_preproc in
  12781.   yes:no )
  12782.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  12783. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  12784.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12785. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12786.     (
  12787.       cat <<\_ASBOX
  12788. ## ------------------------------------ ##
  12789. ## Report this to bug-autoconf@gnu.org. ##
  12790. ## ------------------------------------ ##
  12791. _ASBOX
  12792.     ) |
  12793.       sed "s/^/$as_me: WARNING:     /" >&2
  12794.     ;;
  12795.   no:yes )
  12796.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  12797. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  12798.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  12799. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  12800.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  12801. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  12802.     (
  12803.       cat <<\_ASBOX
  12804. ## ------------------------------------ ##
  12805. ## Report this to bug-autoconf@gnu.org. ##
  12806. ## ------------------------------------ ##
  12807. _ASBOX
  12808.     ) |
  12809.       sed "s/^/$as_me: WARNING:     /" >&2
  12810.     ;;
  12811. esac
  12812. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12813. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12814. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12815.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12816. else
  12817.   eval "$as_ac_Header=$ac_header_preproc"
  12818. fi
  12819. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12820. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12821.  
  12822. fi
  12823. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12824.   cat >>confdefs.h <<_ACEOF
  12825. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12826. _ACEOF
  12827.  
  12828. fi
  12829.  
  12830. done
  12831.  
  12832.  
  12833. if test "x${x_includes}" = "xNONE"; then
  12834.   x_includes="/usr/X11R6/include"
  12835. fi
  12836. if test "x${x_libraries}" = "xNONE"; then
  12837.   x_libraries="/usr/X11R6/lib"
  12838. fi
  12839.  
  12840. NEED_GTK_MAIN=no
  12841. NEED_GNOME_MAIN=no
  12842. NEED_GTK2_MAIN=no
  12843. NEED_GNOME2_MAIN=no
  12844.  
  12845. NEED_QTE_MAIN=no
  12846.  
  12847. if test "x${SYS}" != "xmingw32"
  12848. then
  12849.   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
  12850.  
  12851. for ac_header in X11/extensions/dpms.h
  12852. do
  12853. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  12854. echo "$as_me:$LINENO: checking for $ac_header" >&5
  12855. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  12856. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  12857.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12858. else
  12859.   cat >conftest.$ac_ext <<_ACEOF
  12860. #line $LINENO "configure"
  12861. /* confdefs.h.  */
  12862. _ACEOF
  12863. cat confdefs.h >>conftest.$ac_ext
  12864. cat >>conftest.$ac_ext <<_ACEOF
  12865. /* end confdefs.h.  */
  12866.  
  12867.     #include <X11/Xlib.h>
  12868.  
  12869.  
  12870. #include <$ac_header>
  12871. _ACEOF
  12872. rm -f conftest.$ac_objext
  12873. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12874.   (eval $ac_compile) 2>&5
  12875.   ac_status=$?
  12876.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12877.   (exit $ac_status); } &&
  12878.          { ac_try='test -s conftest.$ac_objext'
  12879.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12880.   (eval $ac_try) 2>&5
  12881.   ac_status=$?
  12882.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12883.   (exit $ac_status); }; }; then
  12884.   eval "$as_ac_Header=yes"
  12885. else
  12886.   echo "$as_me: failed program was:" >&5
  12887. sed 's/^/| /' conftest.$ac_ext >&5
  12888.  
  12889. eval "$as_ac_Header=no"
  12890. fi
  12891. rm -f conftest.$ac_objext conftest.$ac_ext
  12892. fi
  12893. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  12894. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  12895. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  12896.   cat >>confdefs.h <<_ACEOF
  12897. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  12898. _ACEOF
  12899.  
  12900.     echo "$as_me:$LINENO: checking for DPMSInfo in X11/extensions/dpms.h" >&5
  12901. echo $ECHO_N "checking for DPMSInfo in X11/extensions/dpms.h... $ECHO_C" >&6
  12902.     cat >conftest.$ac_ext <<_ACEOF
  12903. #line $LINENO "configure"
  12904. /* confdefs.h.  */
  12905. _ACEOF
  12906. cat confdefs.h >>conftest.$ac_ext
  12907. cat >>conftest.$ac_ext <<_ACEOF
  12908. /* end confdefs.h.  */
  12909. #include <X11/extensions/dpms.h>
  12910.  
  12911. _ACEOF
  12912. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  12913.   $EGREP "DPMSInfo" >/dev/null 2>&1; then
  12914.  
  12915.       echo "$as_me:$LINENO: result: yes" >&5
  12916. echo "${ECHO_T}yes" >&6
  12917.  
  12918. cat >>confdefs.h <<\_ACEOF
  12919. #define DPMSINFO_IN_DPMS_H 1
  12920. _ACEOF
  12921.  
  12922.  
  12923. else
  12924.  
  12925.       echo "$as_me:$LINENO: result: no" >&5
  12926. echo "${ECHO_T}no" >&6
  12927.  
  12928. fi
  12929. rm -f conftest*
  12930.  
  12931.  
  12932. fi
  12933.  
  12934. done
  12935.  
  12936.   CPPFLAGS="${CPPFLAGS_save}"
  12937. fi
  12938.  
  12939. echo "$as_me:$LINENO: checking for ntohl in sys/param.h" >&5
  12940. echo $ECHO_N "checking for ntohl in sys/param.h... $ECHO_C" >&6
  12941. if test "${ac_cv_c_ntohl_sys_param_h+set}" = set; then
  12942.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12943. else
  12944.   CFLAGS="${CFLAGS_save} -Wall -Werror"
  12945.      cat >conftest.$ac_ext <<_ACEOF
  12946. #line $LINENO "configure"
  12947. /* confdefs.h.  */
  12948. _ACEOF
  12949. cat confdefs.h >>conftest.$ac_ext
  12950. cat >>conftest.$ac_ext <<_ACEOF
  12951. /* end confdefs.h.  */
  12952. #include <sys/param.h>
  12953. int
  12954. main ()
  12955. {
  12956. void foo() { int meuh; ntohl(meuh); }
  12957.   ;
  12958.   return 0;
  12959. }
  12960. _ACEOF
  12961. rm -f conftest.$ac_objext
  12962. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  12963.   (eval $ac_compile) 2>&5
  12964.   ac_status=$?
  12965.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12966.   (exit $ac_status); } &&
  12967.          { ac_try='test -s conftest.$ac_objext'
  12968.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  12969.   (eval $ac_try) 2>&5
  12970.   ac_status=$?
  12971.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  12972.   (exit $ac_status); }; }; then
  12973.   ac_cv_c_ntohl_sys_param_h=yes
  12974. else
  12975.   echo "$as_me: failed program was:" >&5
  12976. sed 's/^/| /' conftest.$ac_ext >&5
  12977.  
  12978. ac_cv_c_ntohl_sys_param_h=no
  12979. fi
  12980. rm -f conftest.$ac_objext conftest.$ac_ext
  12981. fi
  12982. echo "$as_me:$LINENO: result: $ac_cv_c_ntohl_sys_param_h" >&5
  12983. echo "${ECHO_T}$ac_cv_c_ntohl_sys_param_h" >&6
  12984. if test "x${ac_cv_c_ntohl_sys_param_h}" != "xno"; then
  12985.  
  12986. cat >>confdefs.h <<\_ACEOF
  12987. #define NTOHL_IN_SYS_PARAM_H 1
  12988. _ACEOF
  12989.  
  12990. fi
  12991.  
  12992. echo "$as_me:$LINENO: checking if \$CC accepts -finline-limit" >&5
  12993. echo $ECHO_N "checking if \$CC accepts -finline-limit... $ECHO_C" >&6
  12994. if test "${ac_cv_c_inline_limit+set}" = set; then
  12995.   echo $ECHO_N "(cached) $ECHO_C" >&6
  12996. else
  12997.   CFLAGS="${CFLAGS_save} -finline-limit-30000"
  12998.      cat >conftest.$ac_ext <<_ACEOF
  12999. #line $LINENO "configure"
  13000. /* confdefs.h.  */
  13001. _ACEOF
  13002. cat confdefs.h >>conftest.$ac_ext
  13003. cat >>conftest.$ac_ext <<_ACEOF
  13004. /* end confdefs.h.  */
  13005.  
  13006. int
  13007. main ()
  13008. {
  13009.  
  13010.   ;
  13011.   return 0;
  13012. }
  13013. _ACEOF
  13014. rm -f conftest.$ac_objext
  13015. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13016.   (eval $ac_compile) 2>&5
  13017.   ac_status=$?
  13018.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13019.   (exit $ac_status); } &&
  13020.          { ac_try='test -s conftest.$ac_objext'
  13021.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13022.   (eval $ac_try) 2>&5
  13023.   ac_status=$?
  13024.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13025.   (exit $ac_status); }; }; then
  13026.   ac_cv_c_inline_limit=yes
  13027. else
  13028.   echo "$as_me: failed program was:" >&5
  13029. sed 's/^/| /' conftest.$ac_ext >&5
  13030.  
  13031. ac_cv_c_inline_limit=no
  13032. fi
  13033. rm -f conftest.$ac_objext conftest.$ac_ext
  13034. fi
  13035. echo "$as_me:$LINENO: result: $ac_cv_c_inline_limit" >&5
  13036. echo "${ECHO_T}$ac_cv_c_inline_limit" >&6
  13037. if test "x${ac_cv_c_inline_limit}" != "xno"; then
  13038.     CFLAGS_save="${CFLAGS_save} -finline-limit-30000"; CFLAGS="${CFLAGS_save}"
  13039.     CXXFLAGS_save="${CXXFLAGS_save} -finline-limit-30000"; CXXFLAGS="${CXXFLAGS_save}"
  13040.     OBJCFLAGS_save="${OBJCFLAGS_save} -finline-limit-30000"; OBJCFLAGS="${OBJCFLAGS_save}"
  13041. fi
  13042.  
  13043. # XXX: do this with an M4 macro?
  13044. #dnl Check for various -W flags
  13045. #for flag in "" all unreachable-code conversion sign-compare disabled-optimization
  13046. #do
  13047. #    AC_CACHE_CHECK([if \$CC accepts -W${flag}],
  13048. #        [ac_cv_c_W${flag}],
  13049. #        [CFLAGS="-W${flag} ${CFLAGS_save}"
  13050. #         AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)])
  13051. #    if test "x${ac_cv_c_W${flag}}" != "xno"; then
  13052. #        CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13053. #        CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13054. #        OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13055. #    fi
  13056. #done
  13057.  
  13058. echo "$as_me:$LINENO: checking if \$CC accepts -Wall" >&5
  13059. echo $ECHO_N "checking if \$CC accepts -Wall... $ECHO_C" >&6
  13060. if test "${ac_cv_c_Wall+set}" = set; then
  13061.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13062. else
  13063.   CFLAGS="-Wall ${CFLAGS_save}"
  13064.      cat >conftest.$ac_ext <<_ACEOF
  13065. #line $LINENO "configure"
  13066. /* confdefs.h.  */
  13067. _ACEOF
  13068. cat confdefs.h >>conftest.$ac_ext
  13069. cat >>conftest.$ac_ext <<_ACEOF
  13070. /* end confdefs.h.  */
  13071.  
  13072. int
  13073. main ()
  13074. {
  13075.  
  13076.   ;
  13077.   return 0;
  13078. }
  13079. _ACEOF
  13080. rm -f conftest.$ac_objext
  13081. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13082.   (eval $ac_compile) 2>&5
  13083.   ac_status=$?
  13084.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13085.   (exit $ac_status); } &&
  13086.          { ac_try='test -s conftest.$ac_objext'
  13087.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13088.   (eval $ac_try) 2>&5
  13089.   ac_status=$?
  13090.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13091.   (exit $ac_status); }; }; then
  13092.   ac_cv_c_Wall=yes
  13093. else
  13094.   echo "$as_me: failed program was:" >&5
  13095. sed 's/^/| /' conftest.$ac_ext >&5
  13096.  
  13097. ac_cv_c_Wall=no
  13098. fi
  13099. rm -f conftest.$ac_objext conftest.$ac_ext
  13100. fi
  13101. echo "$as_me:$LINENO: result: $ac_cv_c_Wall" >&5
  13102. echo "${ECHO_T}$ac_cv_c_Wall" >&6
  13103.  
  13104. echo "$as_me:$LINENO: checking if \$CC accepts -Wconversion" >&5
  13105. echo $ECHO_N "checking if \$CC accepts -Wconversion... $ECHO_C" >&6
  13106. if test "${ac_cv_c_Wconversion+set}" = set; then
  13107.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13108. else
  13109.   CFLAGS="-Wconversion ${CFLAGS_save}"
  13110.      cat >conftest.$ac_ext <<_ACEOF
  13111. #line $LINENO "configure"
  13112. /* confdefs.h.  */
  13113. _ACEOF
  13114. cat confdefs.h >>conftest.$ac_ext
  13115. cat >>conftest.$ac_ext <<_ACEOF
  13116. /* end confdefs.h.  */
  13117.  
  13118. int
  13119. main ()
  13120. {
  13121.  
  13122.   ;
  13123.   return 0;
  13124. }
  13125. _ACEOF
  13126. rm -f conftest.$ac_objext
  13127. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13128.   (eval $ac_compile) 2>&5
  13129.   ac_status=$?
  13130.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13131.   (exit $ac_status); } &&
  13132.          { ac_try='test -s conftest.$ac_objext'
  13133.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13134.   (eval $ac_try) 2>&5
  13135.   ac_status=$?
  13136.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13137.   (exit $ac_status); }; }; then
  13138.   ac_cv_c_Wconversion=yes
  13139. else
  13140.   echo "$as_me: failed program was:" >&5
  13141. sed 's/^/| /' conftest.$ac_ext >&5
  13142.  
  13143. ac_cv_c_Wconversion=no
  13144. fi
  13145. rm -f conftest.$ac_objext conftest.$ac_ext
  13146. fi
  13147. echo "$as_me:$LINENO: result: $ac_cv_c_Wconversion" >&5
  13148. echo "${ECHO_T}$ac_cv_c_Wconversion" >&6
  13149.  
  13150. echo "$as_me:$LINENO: checking if \$CC accepts -Wunreachable-code" >&5
  13151. echo $ECHO_N "checking if \$CC accepts -Wunreachable-code... $ECHO_C" >&6
  13152. if test "${ac_cv_c_Wunreachable_code+set}" = set; then
  13153.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13154. else
  13155.   CFLAGS="-Wunreachable-code ${CFLAGS_save}"
  13156.      cat >conftest.$ac_ext <<_ACEOF
  13157. #line $LINENO "configure"
  13158. /* confdefs.h.  */
  13159. _ACEOF
  13160. cat confdefs.h >>conftest.$ac_ext
  13161. cat >>conftest.$ac_ext <<_ACEOF
  13162. /* end confdefs.h.  */
  13163.  
  13164. int
  13165. main ()
  13166. {
  13167.  
  13168.   ;
  13169.   return 0;
  13170. }
  13171. _ACEOF
  13172. rm -f conftest.$ac_objext
  13173. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13174.   (eval $ac_compile) 2>&5
  13175.   ac_status=$?
  13176.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13177.   (exit $ac_status); } &&
  13178.          { ac_try='test -s conftest.$ac_objext'
  13179.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13180.   (eval $ac_try) 2>&5
  13181.   ac_status=$?
  13182.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13183.   (exit $ac_status); }; }; then
  13184.   ac_cv_c_Wunreachable_code=yes
  13185. else
  13186.   echo "$as_me: failed program was:" >&5
  13187. sed 's/^/| /' conftest.$ac_ext >&5
  13188.  
  13189. ac_cv_c_Wunreachable_code=no
  13190. fi
  13191. rm -f conftest.$ac_objext conftest.$ac_ext
  13192. fi
  13193. echo "$as_me:$LINENO: result: $ac_cv_c_Wunreachable_code" >&5
  13194. echo "${ECHO_T}$ac_cv_c_Wunreachable_code" >&6
  13195.  
  13196. echo "$as_me:$LINENO: checking if \$CC accepts -Wsign-compare" >&5
  13197. echo $ECHO_N "checking if \$CC accepts -Wsign-compare... $ECHO_C" >&6
  13198. if test "${ac_cv_c_Wsign_compare+set}" = set; then
  13199.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13200. else
  13201.   CFLAGS="-Wsign-compare ${CFLAGS_save}"
  13202.      cat >conftest.$ac_ext <<_ACEOF
  13203. #line $LINENO "configure"
  13204. /* confdefs.h.  */
  13205. _ACEOF
  13206. cat confdefs.h >>conftest.$ac_ext
  13207. cat >>conftest.$ac_ext <<_ACEOF
  13208. /* end confdefs.h.  */
  13209.  
  13210. int
  13211. main ()
  13212. {
  13213.  
  13214.   ;
  13215.   return 0;
  13216. }
  13217. _ACEOF
  13218. rm -f conftest.$ac_objext
  13219. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13220.   (eval $ac_compile) 2>&5
  13221.   ac_status=$?
  13222.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13223.   (exit $ac_status); } &&
  13224.          { ac_try='test -s conftest.$ac_objext'
  13225.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13226.   (eval $ac_try) 2>&5
  13227.   ac_status=$?
  13228.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13229.   (exit $ac_status); }; }; then
  13230.   ac_cv_c_Wsign_compare=yes
  13231. else
  13232.   echo "$as_me: failed program was:" >&5
  13233. sed 's/^/| /' conftest.$ac_ext >&5
  13234.  
  13235. ac_cv_c_Wsign_compare=no
  13236. fi
  13237. rm -f conftest.$ac_objext conftest.$ac_ext
  13238. fi
  13239. echo "$as_me:$LINENO: result: $ac_cv_c_Wsign_compare" >&5
  13240. echo "${ECHO_T}$ac_cv_c_Wsign_compare" >&6
  13241.  
  13242. echo "$as_me:$LINENO: checking if \$CC accepts -Wdisabled-optimization" >&5
  13243. echo $ECHO_N "checking if \$CC accepts -Wdisabled-optimization... $ECHO_C" >&6
  13244. if test "${ac_cv_c_Wdisabled_optimization+set}" = set; then
  13245.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13246. else
  13247.   CFLAGS="-Wdisabled-optimization ${CFLAGS_save}"
  13248.      cat >conftest.$ac_ext <<_ACEOF
  13249. #line $LINENO "configure"
  13250. /* confdefs.h.  */
  13251. _ACEOF
  13252. cat confdefs.h >>conftest.$ac_ext
  13253. cat >>conftest.$ac_ext <<_ACEOF
  13254. /* end confdefs.h.  */
  13255.  
  13256. int
  13257. main ()
  13258. {
  13259.  
  13260.   ;
  13261.   return 0;
  13262. }
  13263. _ACEOF
  13264. rm -f conftest.$ac_objext
  13265. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13266.   (eval $ac_compile) 2>&5
  13267.   ac_status=$?
  13268.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13269.   (exit $ac_status); } &&
  13270.          { ac_try='test -s conftest.$ac_objext'
  13271.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13272.   (eval $ac_try) 2>&5
  13273.   ac_status=$?
  13274.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13275.   (exit $ac_status); }; }; then
  13276.   ac_cv_c_Wdisabled_optimization=yes
  13277. else
  13278.   echo "$as_me: failed program was:" >&5
  13279. sed 's/^/| /' conftest.$ac_ext >&5
  13280.  
  13281. ac_cv_c_Wdisabled_optimization=no
  13282. fi
  13283. rm -f conftest.$ac_objext conftest.$ac_ext
  13284. fi
  13285. echo "$as_me:$LINENO: result: $ac_cv_c_Wdisabled_optimization" >&5
  13286. echo "${ECHO_T}$ac_cv_c_Wdisabled_optimization" >&6
  13287.  
  13288. echo "$as_me:$LINENO: checking if \$CC accepts -Winline" >&5
  13289. echo $ECHO_N "checking if \$CC accepts -Winline... $ECHO_C" >&6
  13290. if test "${ac_cv_c_Winline+set}" = set; then
  13291.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13292. else
  13293.   CFLAGS="-Winline ${CFLAGS_save}"
  13294.      cat >conftest.$ac_ext <<_ACEOF
  13295. #line $LINENO "configure"
  13296. /* confdefs.h.  */
  13297. _ACEOF
  13298. cat confdefs.h >>conftest.$ac_ext
  13299. cat >>conftest.$ac_ext <<_ACEOF
  13300. /* end confdefs.h.  */
  13301.  
  13302. int
  13303. main ()
  13304. {
  13305.  
  13306.   ;
  13307.   return 0;
  13308. }
  13309. _ACEOF
  13310. rm -f conftest.$ac_objext
  13311. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13312.   (eval $ac_compile) 2>&5
  13313.   ac_status=$?
  13314.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13315.   (exit $ac_status); } &&
  13316.          { ac_try='test -s conftest.$ac_objext'
  13317.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13318.   (eval $ac_try) 2>&5
  13319.   ac_status=$?
  13320.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13321.   (exit $ac_status); }; }; then
  13322.   ac_cv_c_Winline=yes
  13323. else
  13324.   echo "$as_me: failed program was:" >&5
  13325. sed 's/^/| /' conftest.$ac_ext >&5
  13326.  
  13327. ac_cv_c_Winline=no
  13328. fi
  13329. rm -f conftest.$ac_objext conftest.$ac_ext
  13330. fi
  13331. echo "$as_me:$LINENO: result: $ac_cv_c_Winline" >&5
  13332. echo "${ECHO_T}$ac_cv_c_Winline" >&6
  13333.  
  13334. if test "x${ac_cv_c_Wall}" != "xno"; then
  13335.     CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13336.     CXXFLAGS_save="-Wall ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13337.     OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13338. fi
  13339.  
  13340. if test "x${ac_cv_c_Wunreachable_code}" != "xno"; then
  13341. #    CFLAGS_save="-Wunreachable-code ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13342. #    CXXFLAGS_save="-Wunreachable-code ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13343. #    OBJCFLAGS_save="-Wunreachable-code ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13344.  
  13345.         #    if test "x${ac_cv_c_Wconversion}" != "xno"; then
  13346. #        CFLAGS_save="-Wconversion ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13347. #        CXXFLAGS_save="-Wconversion ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13348. #        OBJCFLAGS_save="-Wconversion ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13349. #    fi
  13350.     if test "x${ac_cv_c_Winline}" != "xno"; then
  13351.         CXXFLAGS_save="-Winline ${CXXFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13352.     fi
  13353.  
  13354. fi
  13355.  
  13356. if test "x${ac_cv_c_Wsign_compare}" != "xno"; then
  13357.     CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13358.     CXXFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13359.     OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13360. fi
  13361.  
  13362. if test "x${ac_cv_c_Wdisabled_optimization}" != "xno"; then
  13363.     CFLAGS_save="-Wdisabled-optimization ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13364.     CXXFLAGS_save="-Wdisabled-optimization ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
  13365.     OBJCFLAGS_save="-Wdisabled-optimization ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13366. fi
  13367.  
  13368. if test "x${ac_cv_c_Winline}" != "xno"; then
  13369.     CFLAGS_save="-Winline ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
  13370.     OBJCFLAGS_save="-Winline ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
  13371. fi
  13372.  
  13373. echo "$as_me:$LINENO: checking if \$CC accepts -pipe" >&5
  13374. echo $ECHO_N "checking if \$CC accepts -pipe... $ECHO_C" >&6
  13375. if test "${ac_cv_c_pipe+set}" = set; then
  13376.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13377. else
  13378.   CFLAGS="${CFLAGS_save} -pipe"
  13379.      cat >conftest.$ac_ext <<_ACEOF
  13380. #line $LINENO "configure"
  13381. /* confdefs.h.  */
  13382. _ACEOF
  13383. cat confdefs.h >>conftest.$ac_ext
  13384. cat >>conftest.$ac_ext <<_ACEOF
  13385. /* end confdefs.h.  */
  13386.  
  13387. int
  13388. main ()
  13389. {
  13390.  
  13391.   ;
  13392.   return 0;
  13393. }
  13394. _ACEOF
  13395. rm -f conftest.$ac_objext
  13396. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13397.   (eval $ac_compile) 2>&5
  13398.   ac_status=$?
  13399.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13400.   (exit $ac_status); } &&
  13401.          { ac_try='test -s conftest.$ac_objext'
  13402.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13403.   (eval $ac_try) 2>&5
  13404.   ac_status=$?
  13405.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13406.   (exit $ac_status); }; }; then
  13407.   ac_cv_c_pipe=yes
  13408. else
  13409.   echo "$as_me: failed program was:" >&5
  13410. sed 's/^/| /' conftest.$ac_ext >&5
  13411.  
  13412. ac_cv_c_pipe=no
  13413. fi
  13414. rm -f conftest.$ac_objext conftest.$ac_ext
  13415. fi
  13416. echo "$as_me:$LINENO: result: $ac_cv_c_pipe" >&5
  13417. echo "${ECHO_T}$ac_cv_c_pipe" >&6
  13418. if test "x${ac_cv_c_pipe}" != "xno"; then
  13419.     CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}"
  13420.     CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}"
  13421.     OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}"
  13422. fi
  13423.  
  13424. echo "$as_me:$LINENO: checking if \$CC accepts -O3" >&5
  13425. echo $ECHO_N "checking if \$CC accepts -O3... $ECHO_C" >&6
  13426. if test "${ac_cv_c_o3+set}" = set; then
  13427.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13428. else
  13429.   CFLAGS="${CFLAGS_save} -O3"
  13430.      cat >conftest.$ac_ext <<_ACEOF
  13431. #line $LINENO "configure"
  13432. /* confdefs.h.  */
  13433. _ACEOF
  13434. cat confdefs.h >>conftest.$ac_ext
  13435. cat >>conftest.$ac_ext <<_ACEOF
  13436. /* end confdefs.h.  */
  13437.  
  13438. int
  13439. main ()
  13440. {
  13441.  
  13442.   ;
  13443.   return 0;
  13444. }
  13445. _ACEOF
  13446. rm -f conftest.$ac_objext
  13447. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13448.   (eval $ac_compile) 2>&5
  13449.   ac_status=$?
  13450.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13451.   (exit $ac_status); } &&
  13452.          { ac_try='test -s conftest.$ac_objext'
  13453.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13454.   (eval $ac_try) 2>&5
  13455.   ac_status=$?
  13456.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13457.   (exit $ac_status); }; }; then
  13458.   ac_cv_c_o3=yes
  13459. else
  13460.   echo "$as_me: failed program was:" >&5
  13461. sed 's/^/| /' conftest.$ac_ext >&5
  13462.  
  13463. ac_cv_c_o3=no
  13464. fi
  13465. rm -f conftest.$ac_objext conftest.$ac_ext
  13466. fi
  13467. echo "$as_me:$LINENO: result: $ac_cv_c_o3" >&5
  13468. echo "${ECHO_T}$ac_cv_c_o3" >&6
  13469. if test "x${ac_cv_c_o3}" != "xno"; then
  13470.     CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
  13471. fi
  13472.  
  13473. echo "$as_me:$LINENO: checking if \$CC accepts -O2" >&5
  13474. echo $ECHO_N "checking if \$CC accepts -O2... $ECHO_C" >&6
  13475. if test "${ac_cv_c_o2+set}" = set; then
  13476.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13477. else
  13478.   CFLAGS="${CFLAGS_save} -O2"
  13479.      cat >conftest.$ac_ext <<_ACEOF
  13480. #line $LINENO "configure"
  13481. /* confdefs.h.  */
  13482. _ACEOF
  13483. cat confdefs.h >>conftest.$ac_ext
  13484. cat >>conftest.$ac_ext <<_ACEOF
  13485. /* end confdefs.h.  */
  13486.  
  13487. int
  13488. main ()
  13489. {
  13490.  
  13491.   ;
  13492.   return 0;
  13493. }
  13494. _ACEOF
  13495. rm -f conftest.$ac_objext
  13496. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13497.   (eval $ac_compile) 2>&5
  13498.   ac_status=$?
  13499.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13500.   (exit $ac_status); } &&
  13501.          { ac_try='test -s conftest.$ac_objext'
  13502.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13503.   (eval $ac_try) 2>&5
  13504.   ac_status=$?
  13505.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13506.   (exit $ac_status); }; }; then
  13507.   ac_cv_c_o2=yes
  13508. else
  13509.   echo "$as_me: failed program was:" >&5
  13510. sed 's/^/| /' conftest.$ac_ext >&5
  13511.  
  13512. ac_cv_c_o2=no
  13513. fi
  13514. rm -f conftest.$ac_objext conftest.$ac_ext
  13515. fi
  13516. echo "$as_me:$LINENO: result: $ac_cv_c_o2" >&5
  13517. echo "${ECHO_T}$ac_cv_c_o2" >&6
  13518. if test "x${ac_cv_c_o2}" != "xno"; then
  13519.     if test "x${ac_cv_c_o3}" = "xno"; then
  13520.         CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
  13521.     fi
  13522.     CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2"
  13523. else
  13524.     echo "$as_me:$LINENO: checking if \$CC accepts -O" >&5
  13525. echo $ECHO_N "checking if \$CC accepts -O... $ECHO_C" >&6
  13526. if test "${ac_cv_c_o+set}" = set; then
  13527.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13528. else
  13529.   CFLAGS="${CFLAGS_save} -O"
  13530.          cat >conftest.$ac_ext <<_ACEOF
  13531. #line $LINENO "configure"
  13532. /* confdefs.h.  */
  13533. _ACEOF
  13534. cat confdefs.h >>conftest.$ac_ext
  13535. cat >>conftest.$ac_ext <<_ACEOF
  13536. /* end confdefs.h.  */
  13537.  
  13538. int
  13539. main ()
  13540. {
  13541.  
  13542.   ;
  13543.   return 0;
  13544. }
  13545. _ACEOF
  13546. rm -f conftest.$ac_objext
  13547. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13548.   (eval $ac_compile) 2>&5
  13549.   ac_status=$?
  13550.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13551.   (exit $ac_status); } &&
  13552.          { ac_try='test -s conftest.$ac_objext'
  13553.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13554.   (eval $ac_try) 2>&5
  13555.   ac_status=$?
  13556.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13557.   (exit $ac_status); }; }; then
  13558.   ac_cv_c_o=yes
  13559. else
  13560.   echo "$as_me: failed program was:" >&5
  13561. sed 's/^/| /' conftest.$ac_ext >&5
  13562.  
  13563. ac_cv_c_o=no
  13564. fi
  13565. rm -f conftest.$ac_objext conftest.$ac_ext
  13566. fi
  13567. echo "$as_me:$LINENO: result: $ac_cv_c_o" >&5
  13568. echo "${ECHO_T}$ac_cv_c_o" >&6
  13569.     if test "x${ac_cv_c_o}" != "xno"; then
  13570.         if test "x${ac_cv_c_o3}" = "xno"; then
  13571.             CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
  13572.     fi
  13573.         CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O"
  13574.     fi
  13575. fi
  13576.  
  13577. echo "$as_me:$LINENO: checking if \$CC accepts -ffast-math" >&5
  13578. echo $ECHO_N "checking if \$CC accepts -ffast-math... $ECHO_C" >&6
  13579. if test "${ac_cv_c_fast_math+set}" = set; then
  13580.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13581. else
  13582.   CFLAGS="${CFLAGS_save} -ffast-math"
  13583.      cat >conftest.$ac_ext <<_ACEOF
  13584. #line $LINENO "configure"
  13585. /* confdefs.h.  */
  13586. _ACEOF
  13587. cat confdefs.h >>conftest.$ac_ext
  13588. cat >>conftest.$ac_ext <<_ACEOF
  13589. /* end confdefs.h.  */
  13590.  
  13591. int
  13592. main ()
  13593. {
  13594.  
  13595.   ;
  13596.   return 0;
  13597. }
  13598. _ACEOF
  13599. rm -f conftest.$ac_objext
  13600. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13601.   (eval $ac_compile) 2>&5
  13602.   ac_status=$?
  13603.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13604.   (exit $ac_status); } &&
  13605.          { ac_try='test -s conftest.$ac_objext'
  13606.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13607.   (eval $ac_try) 2>&5
  13608.   ac_status=$?
  13609.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13610.   (exit $ac_status); }; }; then
  13611.   ac_cv_c_fast_math=yes
  13612. else
  13613.   echo "$as_me: failed program was:" >&5
  13614. sed 's/^/| /' conftest.$ac_ext >&5
  13615.  
  13616. ac_cv_c_fast_math=no
  13617. fi
  13618. rm -f conftest.$ac_objext conftest.$ac_ext
  13619. fi
  13620. echo "$as_me:$LINENO: result: $ac_cv_c_fast_math" >&5
  13621. echo "${ECHO_T}$ac_cv_c_fast_math" >&6
  13622. if test "x${ac_cv_c_fast_math}" != "xno"; then
  13623.     CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
  13624. fi
  13625.  
  13626. if test "x${SYS}" != "xbeos"
  13627. then
  13628.   echo "$as_me:$LINENO: checking if \$CC accepts -funroll-loops" >&5
  13629. echo $ECHO_N "checking if \$CC accepts -funroll-loops... $ECHO_C" >&6
  13630. if test "${ac_cv_c_unroll_loops+set}" = set; then
  13631.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13632. else
  13633.   CFLAGS="${CFLAGS_save} -funroll-loops"
  13634.        cat >conftest.$ac_ext <<_ACEOF
  13635. #line $LINENO "configure"
  13636. /* confdefs.h.  */
  13637. _ACEOF
  13638. cat confdefs.h >>conftest.$ac_ext
  13639. cat >>conftest.$ac_ext <<_ACEOF
  13640. /* end confdefs.h.  */
  13641.  
  13642. int
  13643. main ()
  13644. {
  13645.  
  13646.   ;
  13647.   return 0;
  13648. }
  13649. _ACEOF
  13650. rm -f conftest.$ac_objext
  13651. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13652.   (eval $ac_compile) 2>&5
  13653.   ac_status=$?
  13654.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13655.   (exit $ac_status); } &&
  13656.          { ac_try='test -s conftest.$ac_objext'
  13657.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13658.   (eval $ac_try) 2>&5
  13659.   ac_status=$?
  13660.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13661.   (exit $ac_status); }; }; then
  13662.   ac_cv_c_unroll_loops=yes
  13663. else
  13664.   echo "$as_me: failed program was:" >&5
  13665. sed 's/^/| /' conftest.$ac_ext >&5
  13666.  
  13667. ac_cv_c_unroll_loops=no
  13668. fi
  13669. rm -f conftest.$ac_objext conftest.$ac_ext
  13670. fi
  13671. echo "$as_me:$LINENO: result: $ac_cv_c_unroll_loops" >&5
  13672. echo "${ECHO_T}$ac_cv_c_unroll_loops" >&6
  13673.   if test "x${ac_cv_c_unroll_loops}" != "xno"; then
  13674.       CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
  13675.   fi
  13676. fi
  13677.  
  13678. echo "$as_me:$LINENO: checking if \$CC accepts -fomit-frame-pointer" >&5
  13679. echo $ECHO_N "checking if \$CC accepts -fomit-frame-pointer... $ECHO_C" >&6
  13680. if test "${ac_cv_c_omit_frame_pointer+set}" = set; then
  13681.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13682. else
  13683.   CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
  13684.      cat >conftest.$ac_ext <<_ACEOF
  13685. #line $LINENO "configure"
  13686. /* confdefs.h.  */
  13687. _ACEOF
  13688. cat confdefs.h >>conftest.$ac_ext
  13689. cat >>conftest.$ac_ext <<_ACEOF
  13690. /* end confdefs.h.  */
  13691.  
  13692. int
  13693. main ()
  13694. {
  13695.  
  13696.   ;
  13697.   return 0;
  13698. }
  13699. _ACEOF
  13700. rm -f conftest.$ac_objext
  13701. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13702.   (eval $ac_compile) 2>&5
  13703.   ac_status=$?
  13704.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13705.   (exit $ac_status); } &&
  13706.          { ac_try='test -s conftest.$ac_objext'
  13707.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13708.   (eval $ac_try) 2>&5
  13709.   ac_status=$?
  13710.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13711.   (exit $ac_status); }; }; then
  13712.   ac_cv_c_omit_frame_pointer=yes
  13713. else
  13714.   echo "$as_me: failed program was:" >&5
  13715. sed 's/^/| /' conftest.$ac_ext >&5
  13716.  
  13717. ac_cv_c_omit_frame_pointer=no
  13718. fi
  13719. rm -f conftest.$ac_objext conftest.$ac_ext
  13720. fi
  13721. echo "$as_me:$LINENO: result: $ac_cv_c_omit_frame_pointer" >&5
  13722. echo "${ECHO_T}$ac_cv_c_omit_frame_pointer" >&6
  13723. if test "x${ac_cv_c_omit_frame_pointer}" != "xno"; then
  13724.     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
  13725.     # this plugin does not compile without -fomit-frame-pointer, damn gcc!
  13726.     CFLAGS_i420_yuy2_mmx="${CFLAGS_i420_yuy2_mmx} -fomit-frame-pointer"
  13727. fi
  13728.  
  13729. echo "$as_me:$LINENO: checking if \$CC accepts -mdynamic-no-pic" >&5
  13730. echo $ECHO_N "checking if \$CC accepts -mdynamic-no-pic... $ECHO_C" >&6
  13731. if test "${ac_cv_c_dynamic_no_pic+set}" = set; then
  13732.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13733. else
  13734.   CFLAGS="${CFLAGS_save} -mdynamic-no-pic"
  13735.      cat >conftest.$ac_ext <<_ACEOF
  13736. #line $LINENO "configure"
  13737. /* confdefs.h.  */
  13738. _ACEOF
  13739. cat confdefs.h >>conftest.$ac_ext
  13740. cat >>conftest.$ac_ext <<_ACEOF
  13741. /* end confdefs.h.  */
  13742.  
  13743. int
  13744. main ()
  13745. {
  13746.  
  13747.   ;
  13748.   return 0;
  13749. }
  13750. _ACEOF
  13751. rm -f conftest.$ac_objext
  13752. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13753.   (eval $ac_compile) 2>&5
  13754.   ac_status=$?
  13755.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13756.   (exit $ac_status); } &&
  13757.          { ac_try='test -s conftest.$ac_objext'
  13758.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13759.   (eval $ac_try) 2>&5
  13760.   ac_status=$?
  13761.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13762.   (exit $ac_status); }; }; then
  13763.   ac_cv_c_dynamic_no_pic=yes
  13764. else
  13765.   echo "$as_me: failed program was:" >&5
  13766. sed 's/^/| /' conftest.$ac_ext >&5
  13767.  
  13768. ac_cv_c_dynamic_no_pic=no
  13769. fi
  13770. rm -f conftest.$ac_objext conftest.$ac_ext
  13771. fi
  13772. echo "$as_me:$LINENO: result: $ac_cv_c_dynamic_no_pic" >&5
  13773. echo "${ECHO_T}$ac_cv_c_dynamic_no_pic" >&6
  13774. if test "x${ac_cv_c_dynamic_no_pic}" != "xno"; then
  13775.     CFLAGS_builtins="${CFLAGS_builtins} -mdynamic-no-pic"
  13776.     CFLAGS_libvlc="${CFLAGS_libvlc} -mdynamic-no-pic"
  13777. fi
  13778.  
  13779. echo "$as_me:$LINENO: checking if \$CC accepts -bundle -undefined error -lcc_dynamic" >&5
  13780. echo $ECHO_N "checking if \$CC accepts -bundle -undefined error -lcc_dynamic... $ECHO_C" >&6
  13781. if test "${ac_cv_ld_darwin+set}" = set; then
  13782.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13783. else
  13784.   CFLAGS="${CFLAGS_save} -bundle -undefined error -lcc_dynamic"
  13785.      cat >conftest.$ac_ext <<_ACEOF
  13786. #line $LINENO "configure"
  13787. /* confdefs.h.  */
  13788. _ACEOF
  13789. cat confdefs.h >>conftest.$ac_ext
  13790. cat >>conftest.$ac_ext <<_ACEOF
  13791. /* end confdefs.h.  */
  13792.  
  13793. int
  13794. main ()
  13795. {
  13796.  
  13797.   ;
  13798.   return 0;
  13799. }
  13800. _ACEOF
  13801. rm -f conftest.$ac_objext
  13802. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13803.   (eval $ac_compile) 2>&5
  13804.   ac_status=$?
  13805.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13806.   (exit $ac_status); } &&
  13807.          { ac_try='test -s conftest.$ac_objext'
  13808.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13809.   (eval $ac_try) 2>&5
  13810.   ac_status=$?
  13811.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13812.   (exit $ac_status); }; }; then
  13813.   ac_cv_ld_darwin=yes
  13814. else
  13815.   echo "$as_me: failed program was:" >&5
  13816. sed 's/^/| /' conftest.$ac_ext >&5
  13817.  
  13818. ac_cv_ld_darwin=no
  13819. fi
  13820. rm -f conftest.$ac_objext conftest.$ac_ext
  13821. fi
  13822. echo "$as_me:$LINENO: result: $ac_cv_ld_darwin" >&5
  13823. echo "${ECHO_T}$ac_cv_ld_darwin" >&6
  13824. if test "x${ac_cv_ld_darwin}" != "xno"; then
  13825.     LDFLAGS_plugins="${LDFLAGS_plugins} -bundle -undefined error -lcc_dynamic"
  13826. fi
  13827.  
  13828. echo "$as_me:$LINENO: checking if \$CC accepts -shared" >&5
  13829. echo $ECHO_N "checking if \$CC accepts -shared... $ECHO_C" >&6
  13830. if test "${ac_cv_ld_plugins+set}" = set; then
  13831.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13832. else
  13833.   CFLAGS="${CFLAGS_save} -shared"
  13834.      cat >conftest.$ac_ext <<_ACEOF
  13835. #line $LINENO "configure"
  13836. /* confdefs.h.  */
  13837. _ACEOF
  13838. cat confdefs.h >>conftest.$ac_ext
  13839. cat >>conftest.$ac_ext <<_ACEOF
  13840. /* end confdefs.h.  */
  13841.  
  13842. int
  13843. main ()
  13844. {
  13845.  
  13846.   ;
  13847.   return 0;
  13848. }
  13849. _ACEOF
  13850. rm -f conftest.$ac_objext
  13851. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13852.   (eval $ac_compile) 2>&5
  13853.   ac_status=$?
  13854.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13855.   (exit $ac_status); } &&
  13856.          { ac_try='test -s conftest.$ac_objext'
  13857.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13858.   (eval $ac_try) 2>&5
  13859.   ac_status=$?
  13860.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13861.   (exit $ac_status); }; }; then
  13862.   ac_cv_ld_plugins=yes
  13863. else
  13864.   echo "$as_me: failed program was:" >&5
  13865. sed 's/^/| /' conftest.$ac_ext >&5
  13866.  
  13867. ac_cv_ld_plugins=no
  13868. fi
  13869. rm -f conftest.$ac_objext conftest.$ac_ext
  13870. fi
  13871. echo "$as_me:$LINENO: result: $ac_cv_ld_plugins" >&5
  13872. echo "${ECHO_T}$ac_cv_ld_plugins" >&6
  13873. if test "x${ac_cv_ld_plugins}" != "xno"; then
  13874.     LDFLAGS_plugins="${LDFLAGS_plugins} -shared"
  13875. fi
  13876.  
  13877. echo "$as_me:$LINENO: checking for variadic cpp macros" >&5
  13878. echo $ECHO_N "checking for variadic cpp macros... $ECHO_C" >&6
  13879. if test "${ac_cv_cpp_variadic_macros+set}" = set; then
  13880.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13881. else
  13882.   CFLAGS="${CFLAGS_save}"
  13883.      cat >conftest.$ac_ext <<_ACEOF
  13884. #line $LINENO "configure"
  13885. /* confdefs.h.  */
  13886. _ACEOF
  13887. cat confdefs.h >>conftest.$ac_ext
  13888. cat >>conftest.$ac_ext <<_ACEOF
  13889. /* end confdefs.h.  */
  13890. #include <stdio.h>
  13891.           #define a(b,c...) printf(b,##c)
  13892. int
  13893. main ()
  13894. {
  13895. a("foo");a("%s","bar");a("%s%s","baz","quux");
  13896.   ;
  13897.   return 0;
  13898. }
  13899. _ACEOF
  13900. rm -f conftest.$ac_objext
  13901. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13902.   (eval $ac_compile) 2>&5
  13903.   ac_status=$?
  13904.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13905.   (exit $ac_status); } &&
  13906.          { ac_try='test -s conftest.$ac_objext'
  13907.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13908.   (eval $ac_try) 2>&5
  13909.   ac_status=$?
  13910.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13911.   (exit $ac_status); }; }; then
  13912.   ac_cv_cpp_variadic_macros=yes
  13913. else
  13914.   echo "$as_me: failed program was:" >&5
  13915. sed 's/^/| /' conftest.$ac_ext >&5
  13916.  
  13917. ac_cv_cpp_variadic_macros=no
  13918. fi
  13919. rm -f conftest.$ac_objext conftest.$ac_ext
  13920. fi
  13921. echo "$as_me:$LINENO: result: $ac_cv_cpp_variadic_macros" >&5
  13922. echo "${ECHO_T}$ac_cv_cpp_variadic_macros" >&6
  13923. if test "x${ac_cv_cpp_variadic_macros}" != "xno"; then
  13924.  
  13925. cat >>confdefs.h <<\_ACEOF
  13926. #define HAVE_VARIADIC_MACROS 1
  13927. _ACEOF
  13928.  
  13929. fi
  13930.  
  13931. echo "$as_me:$LINENO: checking __attribute__ ((aligned ())) support" >&5
  13932. echo $ECHO_N "checking __attribute__ ((aligned ())) support... $ECHO_C" >&6
  13933. if test "${ac_cv_c_attribute_aligned+set}" = set; then
  13934.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13935. else
  13936.   ac_cv_c_attribute_aligned=0
  13937.         CFLAGS="${CFLAGS_save} -Werror"
  13938.     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
  13939.         cat >conftest.$ac_ext <<_ACEOF
  13940. #line $LINENO "configure"
  13941. /* confdefs.h.  */
  13942. _ACEOF
  13943. cat confdefs.h >>conftest.$ac_ext
  13944. cat >>conftest.$ac_ext <<_ACEOF
  13945. /* end confdefs.h.  */
  13946.  
  13947. int
  13948. main ()
  13949. {
  13950. static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;
  13951.   ;
  13952.   return 0;
  13953. }
  13954. _ACEOF
  13955. rm -f conftest.$ac_objext
  13956. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  13957.   (eval $ac_compile) 2>&5
  13958.   ac_status=$?
  13959.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13960.   (exit $ac_status); } &&
  13961.          { ac_try='test -s conftest.$ac_objext'
  13962.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  13963.   (eval $ac_try) 2>&5
  13964.   ac_status=$?
  13965.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  13966.   (exit $ac_status); }; }; then
  13967.   ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"
  13968. else
  13969.   echo "$as_me: failed program was:" >&5
  13970. sed 's/^/| /' conftest.$ac_ext >&5
  13971.  
  13972. fi
  13973. rm -f conftest.$ac_objext conftest.$ac_ext
  13974.     done
  13975.         CFLAGS="${CFLAGS_save}"
  13976. fi
  13977. echo "$as_me:$LINENO: result: $ac_cv_c_attribute_aligned" >&5
  13978. echo "${ECHO_T}$ac_cv_c_attribute_aligned" >&6
  13979. if test "x${ac_cv_c_attribute_aligned}" != "x0"; then
  13980.  
  13981. cat >>confdefs.h <<_ACEOF
  13982. #define ATTRIBUTE_ALIGNED_MAX ${ac_cv_c_attribute_aligned}
  13983. _ACEOF
  13984.  
  13985. fi
  13986.  
  13987. echo "$as_me:$LINENO: checking __attribute__ ((format ())) support with function pointers" >&5
  13988. echo $ECHO_N "checking __attribute__ ((format ())) support with function pointers... $ECHO_C" >&6
  13989. if test "${ac_cv_c_attribute_format+set}" = set; then
  13990.   echo $ECHO_N "(cached) $ECHO_C" >&6
  13991. else
  13992.   ac_cv_c_attribute_format=no
  13993.         CFLAGS="${CFLAGS_save} -Werror"
  13994.         cat >conftest.$ac_ext <<_ACEOF
  13995. #line $LINENO "configure"
  13996. /* confdefs.h.  */
  13997. _ACEOF
  13998. cat confdefs.h >>conftest.$ac_ext
  13999. cat >>conftest.$ac_ext <<_ACEOF
  14000. /* end confdefs.h.  */
  14001.  
  14002. int
  14003. main ()
  14004. {
  14005. static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf;
  14006.   ;
  14007.   return 0;
  14008. }
  14009. _ACEOF
  14010. rm -f conftest.$ac_objext
  14011. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14012.   (eval $ac_compile) 2>&5
  14013.   ac_status=$?
  14014.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14015.   (exit $ac_status); } &&
  14016.          { ac_try='test -s conftest.$ac_objext'
  14017.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14018.   (eval $ac_try) 2>&5
  14019.   ac_status=$?
  14020.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14021.   (exit $ac_status); }; }; then
  14022.   ac_cv_c_attribute_format=yes
  14023. else
  14024.   echo "$as_me: failed program was:" >&5
  14025. sed 's/^/| /' conftest.$ac_ext >&5
  14026.  
  14027. fi
  14028. rm -f conftest.$ac_objext conftest.$ac_ext
  14029.         CFLAGS="${CFLAGS_save}"
  14030. fi
  14031. echo "$as_me:$LINENO: result: $ac_cv_c_attribute_format" >&5
  14032. echo "${ECHO_T}$ac_cv_c_attribute_format" >&6
  14033. if test "x${ac_cv_c_attribute_format}" != "xno"; then
  14034.  
  14035. cat >>confdefs.h <<\_ACEOF
  14036. #define HAVE_ATTRIBUTE_FORMAT 1
  14037. _ACEOF
  14038.  
  14039. fi
  14040.  
  14041. case "x${target_cpu}" in
  14042.   x)
  14043.     ARCH=unknown
  14044.     ;;
  14045.   *)
  14046.     ARCH="${target_cpu}"
  14047.     ;;
  14048. esac
  14049.  
  14050. case "${ARCH}" in
  14051.   hppa64)
  14052.     CFLAGS_mpeg_video="${CFLAGS_mpeg_video} -ffunction-sections"
  14053.     ;;
  14054. esac
  14055.  
  14056. # Check whether --enable-gprof or --disable-gprof was given.
  14057. if test "${enable_gprof+set}" = set; then
  14058.   enableval="$enable_gprof"
  14059.  
  14060. fi;
  14061. # Check whether --enable-cprof or --disable-cprof was given.
  14062. if test "${enable_cprof+set}" = set; then
  14063.   enableval="$enable_cprof"
  14064.  
  14065. fi;
  14066.  
  14067.  
  14068. if test "${enable_gprof}" = "yes"; then
  14069.   GPROF_TRUE=
  14070.   GPROF_FALSE='#'
  14071. else
  14072.   GPROF_TRUE='#'
  14073.   GPROF_FALSE=
  14074. fi
  14075.  
  14076.  
  14077.  
  14078. if test "${enable_gprof}" = "yes"; then
  14079.   CPROF_TRUE=
  14080.   CPROF_FALSE='#'
  14081. else
  14082.   CPROF_TRUE='#'
  14083.   CPROF_FALSE=
  14084. fi
  14085.  
  14086.  
  14087. BUILTINS="${BUILTINS} mpeg_video idct idctclassic motion"
  14088. PLUGINS="${PLUGINS} dummy rc logger gestures memcpy"
  14089. PLUGINS="${PLUGINS} es audio m4v mpeg_system ps ts avi asf aac mp4 rawdv"
  14090. PLUGINS="${PLUGINS} spudec mpeg_audio lpcm a52 dts cinepak"
  14091. PLUGINS="${PLUGINS} deinterlace invert adjust wall transform distort clone crop motionblur"
  14092. PLUGINS="${PLUGINS} float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32"
  14093. PLUGINS="${PLUGINS} trivial_resampler ugly_resampler linear_resampler bandlimited_resampler"
  14094. PLUGINS="${PLUGINS} trivial_channel_mixer headphone_channel_mixer"
  14095. PLUGINS="${PLUGINS} trivial_mixer spdif_mixer float32_mixer"
  14096. PLUGINS="${PLUGINS} aout_file"
  14097. #PLUGINS="${PLUGINS} scope"
  14098. PLUGINS="${PLUGINS} i420_rgb i420_yuy2 i422_yuy2 i420_ymga"
  14099. PLUGINS="${PLUGINS} id3 m3u"
  14100. PLUGINS="${PLUGINS} rawvideo"
  14101. PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm a52sys au"
  14102. PLUGINS="${PLUGINS} access_file access_udp access_http ipv4 access_mms"
  14103. PLUGINS="${PLUGINS} access_ftp access_directory sap httpd"
  14104.  
  14105. if test "x${SYS}" != "xmingw32"; then
  14106.     PLUGINS="${PLUGINS} screensaver"
  14107. fi
  14108.  
  14109. MMX_MODULES="memcpymmx idctmmx motionmmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
  14110. MMXEXT_MODULES="memcpymmxext idctmmxext motionmmxext"
  14111. THREEDNOW_MODULES="memcpy3dn"
  14112. SSE_MODULES=""
  14113. ALTIVEC_MODULES="idctaltivec motionaltivec memcpyaltivec"
  14114.  
  14115. if test "${enable_gprof}" != "yes"
  14116. then
  14117.   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
  14118. fi
  14119.  
  14120. echo "$as_me:$LINENO: checking if \$CC groks MMX inline assembly" >&5
  14121. echo $ECHO_N "checking if \$CC groks MMX inline assembly... $ECHO_C" >&6
  14122. if test "${ac_cv_mmx_inline+set}" = set; then
  14123.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14124. else
  14125.   CFLAGS="${CFLAGS_save}"
  14126.      cat >conftest.$ac_ext <<_ACEOF
  14127. #line $LINENO "configure"
  14128. /* confdefs.h.  */
  14129. _ACEOF
  14130. cat confdefs.h >>conftest.$ac_ext
  14131. cat >>conftest.$ac_ext <<_ACEOF
  14132. /* end confdefs.h.  */
  14133.  
  14134. int
  14135. main ()
  14136. {
  14137. void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));
  14138.   ;
  14139.   return 0;
  14140. }
  14141. _ACEOF
  14142. rm -f conftest.$ac_objext
  14143. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14144.   (eval $ac_compile) 2>&5
  14145.   ac_status=$?
  14146.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14147.   (exit $ac_status); } &&
  14148.          { ac_try='test -s conftest.$ac_objext'
  14149.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14150.   (eval $ac_try) 2>&5
  14151.   ac_status=$?
  14152.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14153.   (exit $ac_status); }; }; then
  14154.   ac_cv_mmx_inline=yes
  14155. else
  14156.   echo "$as_me: failed program was:" >&5
  14157. sed 's/^/| /' conftest.$ac_ext >&5
  14158.  
  14159. ac_cv_mmx_inline=no
  14160. fi
  14161. rm -f conftest.$ac_objext conftest.$ac_ext
  14162. fi
  14163. echo "$as_me:$LINENO: result: $ac_cv_mmx_inline" >&5
  14164. echo "${ECHO_T}$ac_cv_mmx_inline" >&6
  14165. if test "x${ac_cv_mmx_inline}" != "xno"; then
  14166.   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
  14167. fi
  14168.  
  14169. echo "$as_me:$LINENO: checking if \$CC groks MMX EXT inline assembly" >&5
  14170. echo $ECHO_N "checking if \$CC groks MMX EXT inline assembly... $ECHO_C" >&6
  14171. if test "${ac_cv_mmxext_inline+set}" = set; then
  14172.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14173. else
  14174.   CFLAGS="${CFLAGS_save}"
  14175.      cat >conftest.$ac_ext <<_ACEOF
  14176. #line $LINENO "configure"
  14177. /* confdefs.h.  */
  14178. _ACEOF
  14179. cat confdefs.h >>conftest.$ac_ext
  14180. cat >>conftest.$ac_ext <<_ACEOF
  14181. /* end confdefs.h.  */
  14182.  
  14183. int
  14184. main ()
  14185. {
  14186. void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));
  14187.   ;
  14188.   return 0;
  14189. }
  14190. _ACEOF
  14191. rm -f conftest.$ac_objext
  14192. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14193.   (eval $ac_compile) 2>&5
  14194.   ac_status=$?
  14195.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14196.   (exit $ac_status); } &&
  14197.          { ac_try='test -s conftest.$ac_objext'
  14198.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14199.   (eval $ac_try) 2>&5
  14200.   ac_status=$?
  14201.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14202.   (exit $ac_status); }; }; then
  14203.   ac_cv_mmxext_inline=yes
  14204. else
  14205.   echo "$as_me: failed program was:" >&5
  14206. sed 's/^/| /' conftest.$ac_ext >&5
  14207.  
  14208. ac_cv_mmxext_inline=no
  14209. fi
  14210. rm -f conftest.$ac_objext conftest.$ac_ext
  14211. fi
  14212. echo "$as_me:$LINENO: result: $ac_cv_mmxext_inline" >&5
  14213. echo "${ECHO_T}$ac_cv_mmxext_inline" >&6
  14214. if test "x${ac_cv_mmxext_inline}" != "xno"; then
  14215.   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
  14216. fi
  14217.  
  14218. echo "$as_me:$LINENO: checking if \$CC groks 3D Now! inline assembly" >&5
  14219. echo $ECHO_N "checking if \$CC groks 3D Now! inline assembly... $ECHO_C" >&6
  14220. if test "${ac_cv_3dnow_inline+set}" = set; then
  14221.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14222. else
  14223.   CFLAGS="${CFLAGS_save}"
  14224.      cat >conftest.$ac_ext <<_ACEOF
  14225. #line $LINENO "configure"
  14226. /* confdefs.h.  */
  14227. _ACEOF
  14228. cat confdefs.h >>conftest.$ac_ext
  14229. cat >>conftest.$ac_ext <<_ACEOF
  14230. /* end confdefs.h.  */
  14231.  
  14232. int
  14233. main ()
  14234. {
  14235. void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));
  14236.   ;
  14237.   return 0;
  14238. }
  14239. _ACEOF
  14240. rm -f conftest.$ac_objext
  14241. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14242.   (eval $ac_compile) 2>&5
  14243.   ac_status=$?
  14244.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14245.   (exit $ac_status); } &&
  14246.          { ac_try='test -s conftest.$ac_objext'
  14247.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14248.   (eval $ac_try) 2>&5
  14249.   ac_status=$?
  14250.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14251.   (exit $ac_status); }; }; then
  14252.   ac_cv_3dnow_inline=yes
  14253. else
  14254.   echo "$as_me: failed program was:" >&5
  14255. sed 's/^/| /' conftest.$ac_ext >&5
  14256.  
  14257. ac_cv_3dnow_inline=no
  14258. fi
  14259. rm -f conftest.$ac_objext conftest.$ac_ext
  14260. fi
  14261. echo "$as_me:$LINENO: result: $ac_cv_3dnow_inline" >&5
  14262. echo "${ECHO_T}$ac_cv_3dnow_inline" >&6
  14263. if test "x${ac_cv_3dnow_inline}" != "xno"; then
  14264.  
  14265. cat >>confdefs.h <<\_ACEOF
  14266. #define CAN_COMPILE_3DNOW 1
  14267. _ACEOF
  14268.  
  14269.   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
  14270. fi
  14271.  
  14272. echo "$as_me:$LINENO: checking if \$CC groks SSE inline assembly" >&5
  14273. echo $ECHO_N "checking if \$CC groks SSE inline assembly... $ECHO_C" >&6
  14274. if test "${ac_cv_sse_inline+set}" = set; then
  14275.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14276. else
  14277.   CFLAGS="${CFLAGS_save}"
  14278.      cat >conftest.$ac_ext <<_ACEOF
  14279. #line $LINENO "configure"
  14280. /* confdefs.h.  */
  14281. _ACEOF
  14282. cat confdefs.h >>conftest.$ac_ext
  14283. cat >>conftest.$ac_ext <<_ACEOF
  14284. /* end confdefs.h.  */
  14285.  
  14286. int
  14287. main ()
  14288. {
  14289. void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));
  14290.   ;
  14291.   return 0;
  14292. }
  14293. _ACEOF
  14294. rm -f conftest.$ac_objext
  14295. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14296.   (eval $ac_compile) 2>&5
  14297.   ac_status=$?
  14298.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14299.   (exit $ac_status); } &&
  14300.          { ac_try='test -s conftest.$ac_objext'
  14301.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14302.   (eval $ac_try) 2>&5
  14303.   ac_status=$?
  14304.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14305.   (exit $ac_status); }; }; then
  14306.   ac_cv_sse_inline=yes
  14307. else
  14308.   echo "$as_me: failed program was:" >&5
  14309. sed 's/^/| /' conftest.$ac_ext >&5
  14310.  
  14311. ac_cv_sse_inline=no
  14312. fi
  14313. rm -f conftest.$ac_objext conftest.$ac_ext
  14314. fi
  14315. echo "$as_me:$LINENO: result: $ac_cv_sse_inline" >&5
  14316. echo "${ECHO_T}$ac_cv_sse_inline" >&6
  14317. if test "x${ac_cv_sse_inline}" != "xno" -a "x${SYS}" != "xmingw32"; then
  14318.  
  14319. cat >>confdefs.h <<\_ACEOF
  14320. #define CAN_COMPILE_SSE 1
  14321. _ACEOF
  14322.  
  14323.   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
  14324. fi
  14325.  
  14326. # don't try to grok AltiVec with native mingw32 it doesn't work right now
  14327. # we should be able to remove this test with future versions of mingw32
  14328. if test "x${SYS}" != "xmingw32"; then
  14329. echo "$as_me:$LINENO: checking if \$CC groks AltiVec inline assembly" >&5
  14330. echo $ECHO_N "checking if \$CC groks AltiVec inline assembly... $ECHO_C" >&6
  14331. if test "${ac_cv_altivec_inline+set}" = set; then
  14332.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14333. else
  14334.   CFLAGS="${CFLAGS_save}"
  14335.      cat >conftest.$ac_ext <<_ACEOF
  14336. #line $LINENO "configure"
  14337. /* confdefs.h.  */
  14338. _ACEOF
  14339. cat confdefs.h >>conftest.$ac_ext
  14340. cat >>conftest.$ac_ext <<_ACEOF
  14341. /* end confdefs.h.  */
  14342.  
  14343. int
  14344. main ()
  14345. {
  14346. asm volatile("vperm 0,1,2,3");
  14347.   ;
  14348.   return 0;
  14349. }
  14350. _ACEOF
  14351. rm -f conftest.$ac_objext
  14352. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14353.   (eval $ac_compile) 2>&5
  14354.   ac_status=$?
  14355.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14356.   (exit $ac_status); } &&
  14357.          { ac_try='test -s conftest.$ac_objext'
  14358.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14359.   (eval $ac_try) 2>&5
  14360.   ac_status=$?
  14361.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14362.   (exit $ac_status); }; }; then
  14363.   ac_cv_altivec_inline=yes
  14364. else
  14365.   echo "$as_me: failed program was:" >&5
  14366. sed 's/^/| /' conftest.$ac_ext >&5
  14367.  
  14368. CFLAGS="${CFLAGS_save} -Wa,-m7400"
  14369.           cat >conftest.$ac_ext <<_ACEOF
  14370. #line $LINENO "configure"
  14371. /* confdefs.h.  */
  14372. _ACEOF
  14373. cat confdefs.h >>conftest.$ac_ext
  14374. cat >>conftest.$ac_ext <<_ACEOF
  14375. /* end confdefs.h.  */
  14376.  
  14377. int
  14378. main ()
  14379. {
  14380. asm volatile("vperm 0,1,2,3");
  14381.   ;
  14382.   return 0;
  14383. }
  14384. _ACEOF
  14385. rm -f conftest.$ac_objext
  14386. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14387.   (eval $ac_compile) 2>&5
  14388.   ac_status=$?
  14389.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14390.   (exit $ac_status); } &&
  14391.          { ac_try='test -s conftest.$ac_objext'
  14392.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14393.   (eval $ac_try) 2>&5
  14394.   ac_status=$?
  14395.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14396.   (exit $ac_status); }; }; then
  14397.   ac_cv_altivec_inline="-Wa,-m7400"
  14398. else
  14399.   echo "$as_me: failed program was:" >&5
  14400. sed 's/^/| /' conftest.$ac_ext >&5
  14401.  
  14402. ac_cv_altivec_inline=no
  14403. fi
  14404. rm -f conftest.$ac_objext conftest.$ac_ext
  14405.  
  14406. fi
  14407. rm -f conftest.$ac_objext conftest.$ac_ext
  14408. fi
  14409. echo "$as_me:$LINENO: result: $ac_cv_altivec_inline" >&5
  14410. echo "${ECHO_T}$ac_cv_altivec_inline" >&6
  14411. if test "x${ac_cv_altivec_inline}" != "xno"; then
  14412.  
  14413. cat >>confdefs.h <<\_ACEOF
  14414. #define CAN_COMPILE_ALTIVEC 1
  14415. _ACEOF
  14416.  
  14417.   if test "x${ac_cv_altivec_inline}" != "xyes"; then
  14418.     CFLAGS_idctaltivec="${CFLAGS_idctaltivec} ${ac_cv_altivec_inline}"
  14419.     CFLAGS_motionaltivec="${CFLAGS_motionaltivec} ${ac_cv_altivec_inline}"
  14420.     CFLAGS_memcpyaltivec="${CFLAGS_memcpyaltivec} ${ac_cv_altivec_inline}"
  14421.     CFLAGS_vlc="${CFLAGS_vlc} ${ac_cv_altivec_inline}"
  14422.   fi
  14423.   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
  14424. fi
  14425.  
  14426. echo "$as_me:$LINENO: checking if \$CC groks AltiVec C extensions" >&5
  14427. echo $ECHO_N "checking if \$CC groks AltiVec C extensions... $ECHO_C" >&6
  14428. if test "${ac_cv_c_altivec+set}" = set; then
  14429.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14430. else
  14431.   CFLAGS="${CFLAGS_save} -faltivec"
  14432.      # Darwin test
  14433.      cat >conftest.$ac_ext <<_ACEOF
  14434. #line $LINENO "configure"
  14435. /* confdefs.h.  */
  14436. _ACEOF
  14437. cat confdefs.h >>conftest.$ac_ext
  14438. cat >>conftest.$ac_ext <<_ACEOF
  14439. /* end confdefs.h.  */
  14440.  
  14441. int
  14442. main ()
  14443. {
  14444. vec_mtvscr((vector unsigned int)(0));
  14445.   ;
  14446.   return 0;
  14447. }
  14448. _ACEOF
  14449. rm -f conftest.$ac_objext
  14450. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14451.   (eval $ac_compile) 2>&5
  14452.   ac_status=$?
  14453.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14454.   (exit $ac_status); } &&
  14455.          { ac_try='test -s conftest.$ac_objext'
  14456.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14457.   (eval $ac_try) 2>&5
  14458.   ac_status=$?
  14459.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14460.   (exit $ac_status); }; }; then
  14461.   ac_cv_c_altivec=-faltivec
  14462. else
  14463.   echo "$as_me: failed program was:" >&5
  14464. sed 's/^/| /' conftest.$ac_ext >&5
  14465.  
  14466.  
  14467.         # Linux/PPC test
  14468.         CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -fvec"
  14469.         cat >conftest.$ac_ext <<_ACEOF
  14470. #line $LINENO "configure"
  14471. /* confdefs.h.  */
  14472. _ACEOF
  14473. cat confdefs.h >>conftest.$ac_ext
  14474. cat >>conftest.$ac_ext <<_ACEOF
  14475. /* end confdefs.h.  */
  14476.  
  14477. int
  14478. main ()
  14479. {
  14480. vec_mtvscr((vector unsigned int)(0));
  14481.   ;
  14482.   return 0;
  14483. }
  14484. _ACEOF
  14485. rm -f conftest.$ac_objext
  14486. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14487.   (eval $ac_compile) 2>&5
  14488.   ac_status=$?
  14489.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14490.   (exit $ac_status); } &&
  14491.          { ac_try='test -s conftest.$ac_objext'
  14492.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14493.   (eval $ac_try) 2>&5
  14494.   ac_status=$?
  14495.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14496.   (exit $ac_status); }; }; then
  14497.   ac_cv_c_altivec="-fvec"
  14498. else
  14499.   echo "$as_me: failed program was:" >&5
  14500. sed 's/^/| /' conftest.$ac_ext >&5
  14501.  
  14502. ac_cv_c_altivec=no
  14503. fi
  14504. rm -f conftest.$ac_objext conftest.$ac_ext
  14505.  
  14506. fi
  14507. rm -f conftest.$ac_objext conftest.$ac_ext
  14508.      CFLAGS="${CFLAGS_save}"
  14509. fi
  14510. echo "$as_me:$LINENO: result: $ac_cv_c_altivec" >&5
  14511. echo "${ECHO_T}$ac_cv_c_altivec" >&6
  14512. if test "x${ac_cv_c_altivec}" != "xno"; then
  14513.  
  14514. cat >>confdefs.h <<\_ACEOF
  14515. #define CAN_COMPILE_C_ALTIVEC 1
  14516. _ACEOF
  14517.  
  14518.   CFLAGS_idctaltivec="${CFLAGS_idctaltivec} ${ac_cv_c_altivec}"
  14519.   CFLAGS_motionaltivec="${CFLAGS_motionaltivec} ${ac_cv_c_altivec}"
  14520.   CFLAGS_memcpyaltivec="${CFLAGS_memcpyaltivec} ${ac_cv_c_altivec}"
  14521.   CFLAGS_vlc="${CFLAGS_vlc} ${ac_cv_c_altivec}"
  14522.   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
  14523. fi
  14524.  
  14525. echo "$as_me:$LINENO: checking if linker needs -framework vecLib" >&5
  14526. echo $ECHO_N "checking if linker needs -framework vecLib... $ECHO_C" >&6
  14527. if test "${ac_cv_ld_altivec+set}" = set; then
  14528.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14529. else
  14530.   LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
  14531.      cat >conftest.$ac_ext <<_ACEOF
  14532. #line $LINENO "configure"
  14533. /* confdefs.h.  */
  14534. _ACEOF
  14535. cat confdefs.h >>conftest.$ac_ext
  14536. cat >>conftest.$ac_ext <<_ACEOF
  14537. /* end confdefs.h.  */
  14538.  
  14539. int
  14540. main ()
  14541. {
  14542.  
  14543.   ;
  14544.   return 0;
  14545. }
  14546. _ACEOF
  14547. rm -f conftest.$ac_objext conftest$ac_exeext
  14548. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  14549.   (eval $ac_link) 2>&5
  14550.   ac_status=$?
  14551.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14552.   (exit $ac_status); } &&
  14553.          { ac_try='test -s conftest$ac_exeext'
  14554.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14555.   (eval $ac_try) 2>&5
  14556.   ac_status=$?
  14557.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14558.   (exit $ac_status); }; }; then
  14559.   ac_cv_ld_altivec=yes
  14560. else
  14561.   echo "$as_me: failed program was:" >&5
  14562. sed 's/^/| /' conftest.$ac_ext >&5
  14563.  
  14564. ac_cv_ld_altivec=no
  14565. fi
  14566. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  14567.      LDFLAGS="${LDFLAGS_save}"
  14568.  
  14569. fi
  14570. echo "$as_me:$LINENO: result: $ac_cv_ld_altivec" >&5
  14571. echo "${ECHO_T}$ac_cv_ld_altivec" >&6
  14572. if test "x${ac_cv_ld_altivec}" != "xno"; then
  14573.   LDFLAGS_idctaltivec="${LDFLAGS_idctaltivec} -framework vecLib"
  14574.   LDFLAGS_motionaltivec="${LDFLAGS_motionaltivec} -framework vecLib"
  14575.   LDFLAGS_memcpyaltivec="${LDFLAGS_memcpyaltivec} -framework vecLib"
  14576.   LDFLAGS_vlc="${LDFLAGS_vlc} -framework vecLib"
  14577. fi
  14578. fi # end if mingw32
  14579.  
  14580.  
  14581. # Check whether --with- or --without- was given.
  14582. if test "${with_+set}" = set; then
  14583.   withval="$with_"
  14584.  
  14585. fi;
  14586.  
  14587. # Check whether --with- or --without- was given.
  14588. if test "${with_+set}" = set; then
  14589.   withval="$with_"
  14590.  
  14591. fi;
  14592.  
  14593.  
  14594. # Check whether --with-tuning or --without-tuning was given.
  14595. if test "${with_tuning+set}" = set; then
  14596.   withval="$with_tuning"
  14597.  
  14598. fi;
  14599. if test "x${with_tuning}" != "x"; then
  14600.     if test "x${target_cpu}" = "xpowerpc"; then
  14601.         CFLAGS_TUNING="-mtune=${with_tuning}"
  14602.     else
  14603.         CFLAGS_TUNING="-mcpu=${with_tuning}"
  14604.     fi
  14605. else
  14606.     if test "x${target_cpu}" = "xi686" -o "x${target_cpu}" = "xi586" -o "x${target_cpu}" = "xi486" -o "x${target_cpu}" = "xi386"; then CFLAGS_TUNING="-mcpu=pentiumpro"
  14607.     else
  14608.         if test "x${target_cpu}" = "xpowerpc"; then CFLAGS_TUNING="-mtune=750"; fi
  14609.     fi
  14610. fi
  14611.  
  14612. if test "x${target_cpu}" = "xi686" -o "x${target_cpu}" = "xi586" -o "x${target_cpu}" = "xx86" -o "x${target_cpu}" = "xi386"
  14613. then
  14614.     ARCH="${ARCH} mmx"
  14615.     BUILTINS="${BUILTINS} ${ACCEL_MODULES}"
  14616. fi
  14617.  
  14618. # Check whether --enable-optimizations or --disable-optimizations was given.
  14619. if test "${enable_optimizations+set}" = set; then
  14620.   enableval="$enable_optimizations"
  14621.  
  14622. fi;
  14623.  
  14624.  
  14625. if test "x${enable_optimizations}" != "xno"; then
  14626.   OPTIM_TRUE=
  14627.   OPTIM_FALSE='#'
  14628. else
  14629.   OPTIM_TRUE='#'
  14630.   OPTIM_FALSE=
  14631. fi
  14632.  
  14633.  
  14634. # Check whether --enable-altivec or --disable-altivec was given.
  14635. if test "${enable_altivec+set}" = set; then
  14636.   enableval="$enable_altivec"
  14637.    if test "x${enable_altivec}" = "xyes"; then ARCH="${ARCH} altivec";
  14638.     BUILTINS="${BUILTINS} ${ACCEL_MODULES}"; fi
  14639. else
  14640.    if test "x${target_cpu}" = "xpowerpc"; then ARCH="${ARCH} altivec";
  14641.     BUILTINS="${BUILTINS} ${ACCEL_MODULES}"; fi
  14642. fi;
  14643.  
  14644. # Check whether --enable-debug or --disable-debug was given.
  14645. if test "${enable_debug+set}" = set; then
  14646.   enableval="$enable_debug"
  14647.  
  14648. fi;
  14649.  
  14650.  
  14651. if test "x${enable_debug}" = "xyes"; then
  14652.   DEBUG_TRUE=
  14653.   DEBUG_FALSE='#'
  14654. else
  14655.   DEBUG_TRUE='#'
  14656.   DEBUG_FALSE=
  14657. fi
  14658.  
  14659.  
  14660. # Check whether --enable-release or --disable-release was given.
  14661. if test "${enable_release+set}" = set; then
  14662.   enableval="$enable_release"
  14663.  
  14664. fi;
  14665.  
  14666.  
  14667. if test "x${enable_release}" = "xyes"; then
  14668.   RELEASE_TRUE=
  14669.   RELEASE_FALSE='#'
  14670. else
  14671.   RELEASE_TRUE='#'
  14672.   RELEASE_FALSE=
  14673. fi
  14674.  
  14675.  
  14676. # Check whether --enable-sout or --disable-sout was given.
  14677. if test "${enable_sout+set}" = set; then
  14678.   enableval="$enable_sout"
  14679.  
  14680. fi;
  14681. if test "x${enable_sout}" != "xno"
  14682. then
  14683.   PLUGINS="${PLUGINS} access_output_dummy access_output_udp access_output_file access_output_http"
  14684.   PLUGINS="${PLUGINS} mux_ts mux_ps mux_avi mux_dummy"
  14685.   PLUGINS="${PLUGINS} packetizer_mpegaudio packetizer_mpegvideo packetizer_a52"
  14686.   PLUGINS="${PLUGINS} packetizer_mpeg4video packetizer_mpeg4audio"
  14687.   PLUGINS="${PLUGINS} packetizer_copy"
  14688.  
  14689.   PLUGINS="${PLUGINS} vout_encoder"
  14690.  
  14691.  
  14692. for ac_header in ogg/ogg.h
  14693. do
  14694. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  14695. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  14696.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  14697. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  14698. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  14699.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14700. fi
  14701. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  14702. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  14703. else
  14704.   # Is the header compilable?
  14705. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  14706. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  14707. cat >conftest.$ac_ext <<_ACEOF
  14708. #line $LINENO "configure"
  14709. /* confdefs.h.  */
  14710. _ACEOF
  14711. cat confdefs.h >>conftest.$ac_ext
  14712. cat >>conftest.$ac_ext <<_ACEOF
  14713. /* end confdefs.h.  */
  14714. $ac_includes_default
  14715. #include <$ac_header>
  14716. _ACEOF
  14717. rm -f conftest.$ac_objext
  14718. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14719.   (eval $ac_compile) 2>&5
  14720.   ac_status=$?
  14721.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14722.   (exit $ac_status); } &&
  14723.          { ac_try='test -s conftest.$ac_objext'
  14724.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14725.   (eval $ac_try) 2>&5
  14726.   ac_status=$?
  14727.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14728.   (exit $ac_status); }; }; then
  14729.   ac_header_compiler=yes
  14730. else
  14731.   echo "$as_me: failed program was:" >&5
  14732. sed 's/^/| /' conftest.$ac_ext >&5
  14733.  
  14734. ac_header_compiler=no
  14735. fi
  14736. rm -f conftest.$ac_objext conftest.$ac_ext
  14737. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  14738. echo "${ECHO_T}$ac_header_compiler" >&6
  14739.  
  14740. # Is the header present?
  14741. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  14742. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  14743. cat >conftest.$ac_ext <<_ACEOF
  14744. #line $LINENO "configure"
  14745. /* confdefs.h.  */
  14746. _ACEOF
  14747. cat confdefs.h >>conftest.$ac_ext
  14748. cat >>conftest.$ac_ext <<_ACEOF
  14749. /* end confdefs.h.  */
  14750. #include <$ac_header>
  14751. _ACEOF
  14752. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  14753.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  14754.   ac_status=$?
  14755.   grep -v '^ *+' conftest.er1 >conftest.err
  14756.   rm -f conftest.er1
  14757.   cat conftest.err >&5
  14758.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14759.   (exit $ac_status); } >/dev/null; then
  14760.   if test -s conftest.err; then
  14761.     ac_cpp_err=$ac_c_preproc_warn_flag
  14762.   else
  14763.     ac_cpp_err=
  14764.   fi
  14765. else
  14766.   ac_cpp_err=yes
  14767. fi
  14768. if test -z "$ac_cpp_err"; then
  14769.   ac_header_preproc=yes
  14770. else
  14771.   echo "$as_me: failed program was:" >&5
  14772. sed 's/^/| /' conftest.$ac_ext >&5
  14773.  
  14774.   ac_header_preproc=no
  14775. fi
  14776. rm -f conftest.err conftest.$ac_ext
  14777. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  14778. echo "${ECHO_T}$ac_header_preproc" >&6
  14779.  
  14780. # So?  What about this header?
  14781. case $ac_header_compiler:$ac_header_preproc in
  14782.   yes:no )
  14783.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  14784. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  14785.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  14786. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  14787.     (
  14788.       cat <<\_ASBOX
  14789. ## ------------------------------------ ##
  14790. ## Report this to bug-autoconf@gnu.org. ##
  14791. ## ------------------------------------ ##
  14792. _ASBOX
  14793.     ) |
  14794.       sed "s/^/$as_me: WARNING:     /" >&2
  14795.     ;;
  14796.   no:yes )
  14797.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  14798. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  14799.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  14800. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  14801.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  14802. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  14803.     (
  14804.       cat <<\_ASBOX
  14805. ## ------------------------------------ ##
  14806. ## Report this to bug-autoconf@gnu.org. ##
  14807. ## ------------------------------------ ##
  14808. _ASBOX
  14809.     ) |
  14810.       sed "s/^/$as_me: WARNING:     /" >&2
  14811.     ;;
  14812. esac
  14813. echo "$as_me:$LINENO: checking for $ac_header" >&5
  14814. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  14815. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  14816.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14817. else
  14818.   eval "$as_ac_Header=$ac_header_preproc"
  14819. fi
  14820. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  14821. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  14822.  
  14823. fi
  14824. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  14825.   cat >>confdefs.h <<_ACEOF
  14826. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  14827. _ACEOF
  14828.  
  14829.       echo "$as_me:$LINENO: checking for ogg_stream_packetin in -logg" >&5
  14830. echo $ECHO_N "checking for ogg_stream_packetin in -logg... $ECHO_C" >&6
  14831. if test "${ac_cv_lib_ogg_ogg_stream_packetin+set}" = set; then
  14832.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14833. else
  14834.   ac_check_lib_save_LIBS=$LIBS
  14835. LIBS="-logg  $LIBS"
  14836. cat >conftest.$ac_ext <<_ACEOF
  14837. #line $LINENO "configure"
  14838. /* confdefs.h.  */
  14839. _ACEOF
  14840. cat confdefs.h >>conftest.$ac_ext
  14841. cat >>conftest.$ac_ext <<_ACEOF
  14842. /* end confdefs.h.  */
  14843.  
  14844. /* Override any gcc2 internal prototype to avoid an error.  */
  14845. #ifdef __cplusplus
  14846. extern "C"
  14847. #endif
  14848. /* We use char because int might match the return type of a gcc2
  14849.    builtin and then its argument prototype would still apply.  */
  14850. char ogg_stream_packetin ();
  14851. int
  14852. main ()
  14853. {
  14854. ogg_stream_packetin ();
  14855.   ;
  14856.   return 0;
  14857. }
  14858. _ACEOF
  14859. rm -f conftest.$ac_objext conftest$ac_exeext
  14860. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  14861.   (eval $ac_link) 2>&5
  14862.   ac_status=$?
  14863.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14864.   (exit $ac_status); } &&
  14865.          { ac_try='test -s conftest$ac_exeext'
  14866.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14867.   (eval $ac_try) 2>&5
  14868.   ac_status=$?
  14869.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14870.   (exit $ac_status); }; }; then
  14871.   ac_cv_lib_ogg_ogg_stream_packetin=yes
  14872. else
  14873.   echo "$as_me: failed program was:" >&5
  14874. sed 's/^/| /' conftest.$ac_ext >&5
  14875.  
  14876. ac_cv_lib_ogg_ogg_stream_packetin=no
  14877. fi
  14878. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  14879. LIBS=$ac_check_lib_save_LIBS
  14880. fi
  14881. echo "$as_me:$LINENO: result: $ac_cv_lib_ogg_ogg_stream_packetin" >&5
  14882. echo "${ECHO_T}$ac_cv_lib_ogg_ogg_stream_packetin" >&6
  14883. if test $ac_cv_lib_ogg_ogg_stream_packetin = yes; then
  14884.  
  14885.         PLUGINS="${PLUGINS} mux_ogg"
  14886.         LDFLAGS_mux_ogg="${LDFLAGS_mux_ogg} -logg"
  14887. fi
  14888.  
  14889.  
  14890. fi
  14891.  
  14892. done
  14893.  
  14894. fi
  14895.  
  14896.  
  14897.  
  14898.  
  14899. # Check whether --with- or --without- was given.
  14900. if test "${with_+set}" = set; then
  14901.   withval="$with_"
  14902.  
  14903. fi;
  14904.  
  14905. # Check whether --enable-dvd or --disable-dvd was given.
  14906. if test "${enable_dvd+set}" = set; then
  14907.   enableval="$enable_dvd"
  14908.  
  14909. fi;
  14910. if test "x${enable_dvd}" != "xno"
  14911. then
  14912.  
  14913. # Check whether --with-dvdcss or --without-dvdcss was given.
  14914. if test "${with_dvdcss+set}" = set; then
  14915.   withval="$with_dvdcss"
  14916.  
  14917. fi;
  14918.  
  14919. # Check whether --with-dvdcss-tree or --without-dvdcss-tree was given.
  14920. if test "${with_dvdcss_tree+set}" = set; then
  14921.   withval="$with_dvdcss_tree"
  14922.  
  14923. fi;
  14924.   case "x${with_dvdcss}" in
  14925.   x|xyes)
  14926.     if test "x${with_dvdcss_tree}" = x
  14927.     then
  14928.  
  14929. for ac_header in dvdcss/dvdcss.h
  14930. do
  14931. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  14932. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  14933.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  14934. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  14935. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  14936.   echo $ECHO_N "(cached) $ECHO_C" >&6
  14937. fi
  14938. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  14939. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  14940. else
  14941.   # Is the header compilable?
  14942. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  14943. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  14944. cat >conftest.$ac_ext <<_ACEOF
  14945. #line $LINENO "configure"
  14946. /* confdefs.h.  */
  14947. _ACEOF
  14948. cat confdefs.h >>conftest.$ac_ext
  14949. cat >>conftest.$ac_ext <<_ACEOF
  14950. /* end confdefs.h.  */
  14951. $ac_includes_default
  14952. #include <$ac_header>
  14953. _ACEOF
  14954. rm -f conftest.$ac_objext
  14955. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  14956.   (eval $ac_compile) 2>&5
  14957.   ac_status=$?
  14958.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14959.   (exit $ac_status); } &&
  14960.          { ac_try='test -s conftest.$ac_objext'
  14961.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  14962.   (eval $ac_try) 2>&5
  14963.   ac_status=$?
  14964.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14965.   (exit $ac_status); }; }; then
  14966.   ac_header_compiler=yes
  14967. else
  14968.   echo "$as_me: failed program was:" >&5
  14969. sed 's/^/| /' conftest.$ac_ext >&5
  14970.  
  14971. ac_header_compiler=no
  14972. fi
  14973. rm -f conftest.$ac_objext conftest.$ac_ext
  14974. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  14975. echo "${ECHO_T}$ac_header_compiler" >&6
  14976.  
  14977. # Is the header present?
  14978. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  14979. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  14980. cat >conftest.$ac_ext <<_ACEOF
  14981. #line $LINENO "configure"
  14982. /* confdefs.h.  */
  14983. _ACEOF
  14984. cat confdefs.h >>conftest.$ac_ext
  14985. cat >>conftest.$ac_ext <<_ACEOF
  14986. /* end confdefs.h.  */
  14987. #include <$ac_header>
  14988. _ACEOF
  14989. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  14990.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  14991.   ac_status=$?
  14992.   grep -v '^ *+' conftest.er1 >conftest.err
  14993.   rm -f conftest.er1
  14994.   cat conftest.err >&5
  14995.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  14996.   (exit $ac_status); } >/dev/null; then
  14997.   if test -s conftest.err; then
  14998.     ac_cpp_err=$ac_c_preproc_warn_flag
  14999.   else
  15000.     ac_cpp_err=
  15001.   fi
  15002. else
  15003.   ac_cpp_err=yes
  15004. fi
  15005. if test -z "$ac_cpp_err"; then
  15006.   ac_header_preproc=yes
  15007. else
  15008.   echo "$as_me: failed program was:" >&5
  15009. sed 's/^/| /' conftest.$ac_ext >&5
  15010.  
  15011.   ac_header_preproc=no
  15012. fi
  15013. rm -f conftest.err conftest.$ac_ext
  15014. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  15015. echo "${ECHO_T}$ac_header_preproc" >&6
  15016.  
  15017. # So?  What about this header?
  15018. case $ac_header_compiler:$ac_header_preproc in
  15019.   yes:no )
  15020.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  15021. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  15022.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15023. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15024.     (
  15025.       cat <<\_ASBOX
  15026. ## ------------------------------------ ##
  15027. ## Report this to bug-autoconf@gnu.org. ##
  15028. ## ------------------------------------ ##
  15029. _ASBOX
  15030.     ) |
  15031.       sed "s/^/$as_me: WARNING:     /" >&2
  15032.     ;;
  15033.   no:yes )
  15034.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  15035. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  15036.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  15037. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  15038.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15039. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15040.     (
  15041.       cat <<\_ASBOX
  15042. ## ------------------------------------ ##
  15043. ## Report this to bug-autoconf@gnu.org. ##
  15044. ## ------------------------------------ ##
  15045. _ASBOX
  15046.     ) |
  15047.       sed "s/^/$as_me: WARNING:     /" >&2
  15048.     ;;
  15049. esac
  15050. echo "$as_me:$LINENO: checking for $ac_header" >&5
  15051. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15052. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15053.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15054. else
  15055.   eval "$as_ac_Header=$ac_header_preproc"
  15056. fi
  15057. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15058. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15059.  
  15060. fi
  15061. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  15062.   cat >>confdefs.h <<_ACEOF
  15063. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  15064. _ACEOF
  15065.   PLUGINS="${PLUGINS} dvd"
  15066.           LDFLAGS_dvd="${LDFLAGS_dvd} -ldvdcss"
  15067.           LDFLAGS_dvdcss="${LDFLAGS_dvdcss} -ldvdcss"
  15068. else
  15069.    { echo "$as_me:$LINENO: WARNING: libdvdcss is no longer provided with vlc; please get libdvdcss from http://www.videolan.org/libdvdcss/ and build it. Then either use --with-dvdcss=<path/where/libdvdcss/was/installed> for dynamic linking (recommended under Unix) or --with-dvdcss-tree=<path/where/libdvdcss/was/built> for static linking (recommended under BeOS, Windows, MacOS X). Alternatively you can use --disable-dvd to disable the DVD plugin." >&5
  15070. echo "$as_me: WARNING: libdvdcss is no longer provided with vlc; please get libdvdcss from http://www.videolan.org/libdvdcss/ and build it. Then either use --with-dvdcss=<path/where/libdvdcss/was/installed> for dynamic linking (recommended under Unix) or --with-dvdcss-tree=<path/where/libdvdcss/was/built> for static linking (recommended under BeOS, Windows, MacOS X). Alternatively you can use --disable-dvd to disable the DVD plugin." >&2;}
  15071.           { { echo "$as_me:$LINENO: error: cannot find libdvdcss headers" >&5
  15072. echo "$as_me: error: cannot find libdvdcss headers" >&2;}
  15073.    { (exit 1); exit 1; }; }
  15074. fi
  15075.  
  15076. done
  15077.  
  15078.     else
  15079.       echo "$as_me:$LINENO: checking for libdvdcss.a in ${with_dvdcss_tree}" >&5
  15080. echo $ECHO_N "checking for libdvdcss.a in ${with_dvdcss_tree}... $ECHO_C" >&6
  15081.       real_dvdcss_tree="`cd ${with_dvdcss_tree} 2>/dev/null && pwd`"
  15082.       if test "x${real_dvdcss_tree}" = "x"
  15083.       then
  15084.                 echo "$as_me:$LINENO: result: no" >&5
  15085. echo "${ECHO_T}no" >&6
  15086.         { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvdcss_tree}" >&5
  15087. echo "$as_me: error: cannot cd to ${with_dvdcss_tree}" >&2;}
  15088.    { (exit 1); exit 1; }; }
  15089.       fi
  15090.       if test -f "${real_dvdcss_tree}/src/.libs/libdvdcss.a"
  15091.       then
  15092.                 echo "$as_me:$LINENO: result: ${real_dvdcss_tree}/src/.libs/libdvdcss.a" >&5
  15093. echo "${ECHO_T}${real_dvdcss_tree}/src/.libs/libdvdcss.a" >&6
  15094.         BUILTINS="${BUILTINS} dvd"
  15095.         LDFLAGS_dvd="${LDFLAGS_dvd} -L${real_dvdcss_tree}/src/.libs -ldvdcss"
  15096.         LDFLAGS_dvdcss="${LDFLAGS_dvdcss} -L${real_dvdcss_tree}/src/.libs -ldvdcss"
  15097.         CPPFLAGS_dvd="${CPPFLAGS_dvd} -I${real_dvdcss_tree}/src"
  15098.       else
  15099.                 echo "$as_me:$LINENO: result: no" >&5
  15100. echo "${ECHO_T}no" >&6
  15101.         { { echo "$as_me:$LINENO: error: cannot find ${real_dvdcss_tree}/src/.libs/libdvdcss.a, make sure you compiled libdvdcss in ${with_dvdcss_tree}" >&5
  15102. echo "$as_me: error: cannot find ${real_dvdcss_tree}/src/.libs/libdvdcss.a, make sure you compiled libdvdcss in ${with_dvdcss_tree}" >&2;}
  15103.    { (exit 1); exit 1; }; }
  15104.       fi
  15105.     fi
  15106.   ;;
  15107.   xno)
  15108.         PLUGINS="${PLUGINS} dvd"
  15109.     CPPFLAGS_dvd="${CPPFLAGS_dvd} -DGOD_DAMN_DMCA"
  15110.     LDFLAGS_dvd="${LDFLAGS_dvd} -ldl"
  15111.   ;;
  15112.   *)
  15113.     echo "$as_me:$LINENO: checking for dvdcss headers in ${with_dvdcss}" >&5
  15114. echo $ECHO_N "checking for dvdcss headers in ${with_dvdcss}... $ECHO_C" >&6
  15115.     if test -f ${with_dvdcss}/include/dvdcss/dvdcss.h
  15116.     then
  15117.             echo "$as_me:$LINENO: result: yes" >&5
  15118. echo "${ECHO_T}yes" >&6
  15119.       PLUGINS="${PLUGINS} dvd"
  15120.       LDFLAGS_dvd="${LDFLAGS_dvd} -L${with_dvdcss}/lib -ldvdcss"
  15121.       LDFLAGS_dvdcss="${LDFLAGS_dvdcss} -L${with_dvdcss}/lib -ldvdcss"
  15122.       CPPFLAGS_dvd="${CPPFLAGS_dvd} -I${with_dvdcss}/include"
  15123.     else
  15124.             echo "$as_me:$LINENO: result: no" >&5
  15125. echo "${ECHO_T}no" >&6
  15126.       { { echo "$as_me:$LINENO: error: cannot find ${with_dvdcss}/include/dvdcss/dvdcss.h" >&5
  15127. echo "$as_me: error: cannot find ${with_dvdcss}/include/dvdcss/dvdcss.h" >&2;}
  15128.    { (exit 1); exit 1; }; }
  15129.     fi
  15130.   ;;
  15131.   esac
  15132. fi
  15133.  
  15134. # Check whether --enable-dvdread or --disable-dvdread was given.
  15135. if test "${enable_dvdread+set}" = set; then
  15136.   enableval="$enable_dvdread"
  15137.  
  15138. fi;
  15139. if test "x${enable_dvdread}" != "xno"
  15140. then
  15141.  
  15142. # Check whether --with-dvdread or --without-dvdread was given.
  15143. if test "${with_dvdread+set}" = set; then
  15144.   withval="$with_dvdread"
  15145.  
  15146. fi;
  15147.  
  15148. # Check whether --with-dvdread-tree or --without-dvdread-tree was given.
  15149. if test "${with_dvdread_tree+set}" = set; then
  15150.   withval="$with_dvdread_tree"
  15151.  
  15152. fi;
  15153.   if test "x${with_dvdread}" = x
  15154.   then
  15155.     if test "x${with_dvdread_tree}" = x
  15156.     then
  15157.  
  15158. for ac_header in dvdread/dvd_reader.h
  15159. do
  15160. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  15161. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15162.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  15163. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15164. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15165.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15166. fi
  15167. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15168. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15169. else
  15170.   # Is the header compilable?
  15171. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  15172. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  15173. cat >conftest.$ac_ext <<_ACEOF
  15174. #line $LINENO "configure"
  15175. /* confdefs.h.  */
  15176. _ACEOF
  15177. cat confdefs.h >>conftest.$ac_ext
  15178. cat >>conftest.$ac_ext <<_ACEOF
  15179. /* end confdefs.h.  */
  15180. $ac_includes_default
  15181. #include <$ac_header>
  15182. _ACEOF
  15183. rm -f conftest.$ac_objext
  15184. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  15185.   (eval $ac_compile) 2>&5
  15186.   ac_status=$?
  15187.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15188.   (exit $ac_status); } &&
  15189.          { ac_try='test -s conftest.$ac_objext'
  15190.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  15191.   (eval $ac_try) 2>&5
  15192.   ac_status=$?
  15193.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15194.   (exit $ac_status); }; }; then
  15195.   ac_header_compiler=yes
  15196. else
  15197.   echo "$as_me: failed program was:" >&5
  15198. sed 's/^/| /' conftest.$ac_ext >&5
  15199.  
  15200. ac_header_compiler=no
  15201. fi
  15202. rm -f conftest.$ac_objext conftest.$ac_ext
  15203. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  15204. echo "${ECHO_T}$ac_header_compiler" >&6
  15205.  
  15206. # Is the header present?
  15207. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  15208. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  15209. cat >conftest.$ac_ext <<_ACEOF
  15210. #line $LINENO "configure"
  15211. /* confdefs.h.  */
  15212. _ACEOF
  15213. cat confdefs.h >>conftest.$ac_ext
  15214. cat >>conftest.$ac_ext <<_ACEOF
  15215. /* end confdefs.h.  */
  15216. #include <$ac_header>
  15217. _ACEOF
  15218. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  15219.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  15220.   ac_status=$?
  15221.   grep -v '^ *+' conftest.er1 >conftest.err
  15222.   rm -f conftest.er1
  15223.   cat conftest.err >&5
  15224.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15225.   (exit $ac_status); } >/dev/null; then
  15226.   if test -s conftest.err; then
  15227.     ac_cpp_err=$ac_c_preproc_warn_flag
  15228.   else
  15229.     ac_cpp_err=
  15230.   fi
  15231. else
  15232.   ac_cpp_err=yes
  15233. fi
  15234. if test -z "$ac_cpp_err"; then
  15235.   ac_header_preproc=yes
  15236. else
  15237.   echo "$as_me: failed program was:" >&5
  15238. sed 's/^/| /' conftest.$ac_ext >&5
  15239.  
  15240.   ac_header_preproc=no
  15241. fi
  15242. rm -f conftest.err conftest.$ac_ext
  15243. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  15244. echo "${ECHO_T}$ac_header_preproc" >&6
  15245.  
  15246. # So?  What about this header?
  15247. case $ac_header_compiler:$ac_header_preproc in
  15248.   yes:no )
  15249.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  15250. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  15251.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15252. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15253.     (
  15254.       cat <<\_ASBOX
  15255. ## ------------------------------------ ##
  15256. ## Report this to bug-autoconf@gnu.org. ##
  15257. ## ------------------------------------ ##
  15258. _ASBOX
  15259.     ) |
  15260.       sed "s/^/$as_me: WARNING:     /" >&2
  15261.     ;;
  15262.   no:yes )
  15263.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  15264. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  15265.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  15266. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  15267.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15268. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15269.     (
  15270.       cat <<\_ASBOX
  15271. ## ------------------------------------ ##
  15272. ## Report this to bug-autoconf@gnu.org. ##
  15273. ## ------------------------------------ ##
  15274. _ASBOX
  15275.     ) |
  15276.       sed "s/^/$as_me: WARNING:     /" >&2
  15277.     ;;
  15278. esac
  15279. echo "$as_me:$LINENO: checking for $ac_header" >&5
  15280. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15281. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15282.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15283. else
  15284.   eval "$as_ac_Header=$ac_header_preproc"
  15285. fi
  15286. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15287. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15288.  
  15289. fi
  15290. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  15291.   cat >>confdefs.h <<_ACEOF
  15292. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  15293. _ACEOF
  15294.   PLUGINS="${PLUGINS} dvdread"
  15295.           LDFLAGS_dvdread="${LDFLAGS_dvdread} -ldvdread ${LDFLAGS_dvdcss}"
  15296. else
  15297.    if test "x${enable_dvdread}" != "x"
  15298.           then
  15299.             { echo "$as_me:$LINENO: WARNING: Please get libdvdread from http://www.dtek.chalmers.se/groups/dvd/downloads.shtml" >&5
  15300. echo "$as_me: WARNING: Please get libdvdread from http://www.dtek.chalmers.se/groups/dvd/downloads.shtml" >&2;}
  15301.             { { echo "$as_me:$LINENO: error: cannot find libdvdread headers" >&5
  15302. echo "$as_me: error: cannot find libdvdread headers" >&2;}
  15303.    { (exit 1); exit 1; }; }
  15304.           fi
  15305. fi
  15306.  
  15307. done
  15308.  
  15309.     else
  15310.       echo "$as_me:$LINENO: checking for libdvdread.a in ${with_dvdread_tree}" >&5
  15311. echo $ECHO_N "checking for libdvdread.a in ${with_dvdread_tree}... $ECHO_C" >&6
  15312.       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
  15313.       if test "x${real_dvdread_tree}" = "x"
  15314.       then
  15315.                 echo "$as_me:$LINENO: result: no" >&5
  15316. echo "${ECHO_T}no" >&6
  15317.         { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvdread_tree}" >&5
  15318. echo "$as_me: error: cannot cd to ${with_dvdread_tree}" >&2;}
  15319.    { (exit 1); exit 1; }; }
  15320.       fi
  15321.       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
  15322.       then
  15323.                 echo "$as_me:$LINENO: result: ${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&5
  15324. echo "${ECHO_T}${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&6
  15325.         BUILTINS="${BUILTINS} dvdread"
  15326.         LDFLAGS_dvdread="${LDFLAGS_dvdread} -L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}"
  15327.         CPPFLAGS_dvdread="${CPPFLAGS_dvdread} -I${real_dvdread_tree}"
  15328.       else
  15329.                 echo "$as_me:$LINENO: result: no" >&5
  15330. echo "${ECHO_T}no" >&6
  15331.         { { echo "$as_me:$LINENO: error: cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" >&5
  15332. echo "$as_me: error: cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" >&2;}
  15333.    { (exit 1); exit 1; }; }
  15334.       fi
  15335.     fi
  15336.   else
  15337.     echo "$as_me:$LINENO: checking for dvdread headers in ${with_dvdread}" >&5
  15338. echo $ECHO_N "checking for dvdread headers in ${with_dvdread}... $ECHO_C" >&6
  15339.     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
  15340.     then
  15341.             echo "$as_me:$LINENO: result: yes" >&5
  15342. echo "${ECHO_T}yes" >&6
  15343.       PLUGINS="${PLUGINS} dvdread"
  15344.       LDFLAGS_dvdread="${LDFLAGS_dvdread} -L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}"
  15345.       CPPFLAGS_dvdread="${CPPFLAGS_dvdread} -I${with_dvdread}/include"
  15346.     else
  15347.             echo "$as_me:$LINENO: result: no" >&5
  15348. echo "${ECHO_T}no" >&6
  15349.       { { echo "$as_me:$LINENO: error: cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" >&5
  15350. echo "$as_me: error: cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" >&2;}
  15351.    { (exit 1); exit 1; }; }
  15352.     fi
  15353.   fi
  15354. fi
  15355.  
  15356. # Check whether --enable-dvdplay or --disable-dvdplay was given.
  15357. if test "${enable_dvdplay+set}" = set; then
  15358.   enableval="$enable_dvdplay"
  15359.  
  15360. fi;
  15361. if test "x${enable_dvdplay}" != "xno"
  15362. then
  15363.  
  15364. # Check whether --with-dvdplay or --without-dvdplay was given.
  15365. if test "${with_dvdplay+set}" = set; then
  15366.   withval="$with_dvdplay"
  15367.  
  15368. fi;
  15369.  
  15370. # Check whether --with-dvdplay-tree or --without-dvdplay-tree was given.
  15371. if test "${with_dvdplay_tree+set}" = set; then
  15372.   withval="$with_dvdplay_tree"
  15373.  
  15374. fi;
  15375.   if test "x${with_dvdplay}" = x
  15376.   then
  15377.     if test "x${with_dvdplay_tree}" = x
  15378.     then
  15379.  
  15380. for ac_header in dvdplay/dvdplay.h
  15381. do
  15382. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  15383. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15384.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  15385. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15386. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15387.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15388. fi
  15389. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15390. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15391. else
  15392.   # Is the header compilable?
  15393. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  15394. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  15395. cat >conftest.$ac_ext <<_ACEOF
  15396. #line $LINENO "configure"
  15397. /* confdefs.h.  */
  15398. _ACEOF
  15399. cat confdefs.h >>conftest.$ac_ext
  15400. cat >>conftest.$ac_ext <<_ACEOF
  15401. /* end confdefs.h.  */
  15402. $ac_includes_default
  15403. #include <$ac_header>
  15404. _ACEOF
  15405. rm -f conftest.$ac_objext
  15406. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  15407.   (eval $ac_compile) 2>&5
  15408.   ac_status=$?
  15409.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15410.   (exit $ac_status); } &&
  15411.          { ac_try='test -s conftest.$ac_objext'
  15412.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  15413.   (eval $ac_try) 2>&5
  15414.   ac_status=$?
  15415.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15416.   (exit $ac_status); }; }; then
  15417.   ac_header_compiler=yes
  15418. else
  15419.   echo "$as_me: failed program was:" >&5
  15420. sed 's/^/| /' conftest.$ac_ext >&5
  15421.  
  15422. ac_header_compiler=no
  15423. fi
  15424. rm -f conftest.$ac_objext conftest.$ac_ext
  15425. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  15426. echo "${ECHO_T}$ac_header_compiler" >&6
  15427.  
  15428. # Is the header present?
  15429. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  15430. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  15431. cat >conftest.$ac_ext <<_ACEOF
  15432. #line $LINENO "configure"
  15433. /* confdefs.h.  */
  15434. _ACEOF
  15435. cat confdefs.h >>conftest.$ac_ext
  15436. cat >>conftest.$ac_ext <<_ACEOF
  15437. /* end confdefs.h.  */
  15438. #include <$ac_header>
  15439. _ACEOF
  15440. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  15441.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  15442.   ac_status=$?
  15443.   grep -v '^ *+' conftest.er1 >conftest.err
  15444.   rm -f conftest.er1
  15445.   cat conftest.err >&5
  15446.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15447.   (exit $ac_status); } >/dev/null; then
  15448.   if test -s conftest.err; then
  15449.     ac_cpp_err=$ac_c_preproc_warn_flag
  15450.   else
  15451.     ac_cpp_err=
  15452.   fi
  15453. else
  15454.   ac_cpp_err=yes
  15455. fi
  15456. if test -z "$ac_cpp_err"; then
  15457.   ac_header_preproc=yes
  15458. else
  15459.   echo "$as_me: failed program was:" >&5
  15460. sed 's/^/| /' conftest.$ac_ext >&5
  15461.  
  15462.   ac_header_preproc=no
  15463. fi
  15464. rm -f conftest.err conftest.$ac_ext
  15465. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  15466. echo "${ECHO_T}$ac_header_preproc" >&6
  15467.  
  15468. # So?  What about this header?
  15469. case $ac_header_compiler:$ac_header_preproc in
  15470.   yes:no )
  15471.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  15472. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  15473.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15474. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15475.     (
  15476.       cat <<\_ASBOX
  15477. ## ------------------------------------ ##
  15478. ## Report this to bug-autoconf@gnu.org. ##
  15479. ## ------------------------------------ ##
  15480. _ASBOX
  15481.     ) |
  15482.       sed "s/^/$as_me: WARNING:     /" >&2
  15483.     ;;
  15484.   no:yes )
  15485.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  15486. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  15487.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  15488. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  15489.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15490. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15491.     (
  15492.       cat <<\_ASBOX
  15493. ## ------------------------------------ ##
  15494. ## Report this to bug-autoconf@gnu.org. ##
  15495. ## ------------------------------------ ##
  15496. _ASBOX
  15497.     ) |
  15498.       sed "s/^/$as_me: WARNING:     /" >&2
  15499.     ;;
  15500. esac
  15501. echo "$as_me:$LINENO: checking for $ac_header" >&5
  15502. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15503. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15504.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15505. else
  15506.   eval "$as_ac_Header=$ac_header_preproc"
  15507. fi
  15508. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15509. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15510.  
  15511. fi
  15512. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  15513.   cat >>confdefs.h <<_ACEOF
  15514. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  15515. _ACEOF
  15516.   PLUGINS="${PLUGINS} dvdplay"
  15517.           LDFLAGS_dvdplay="${LDFLAGS_dvdplay} -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}"
  15518.           CPPFLAGS_dvdplay="${CPPFLAGS_dvdplay} ${CPPFLAGS_dvdread}"
  15519. else
  15520.    if test "x${enable_dvdplay}" != "x"
  15521.           then
  15522.             { echo "$as_me:$LINENO: WARNING: Please get libdvdplay from http://www.videolan.org/." >&5
  15523. echo "$as_me: WARNING: Please get libdvdplay from http://www.videolan.org/." >&2;}
  15524.             { { echo "$as_me:$LINENO: error: cannot find libdvdplay headers" >&5
  15525. echo "$as_me: error: cannot find libdvdplay headers" >&2;}
  15526.    { (exit 1); exit 1; }; }
  15527.           fi
  15528. fi
  15529.  
  15530. done
  15531.  
  15532.     else
  15533.       echo "$as_me:$LINENO: checking for libdvdplay.a in ${with_dvdplay_tree}" >&5
  15534. echo $ECHO_N "checking for libdvdplay.a in ${with_dvdplay_tree}... $ECHO_C" >&6
  15535.       real_dvdplay_tree="`cd ${with_dvdplay_tree} 2>/dev/null && pwd`"
  15536.       if test "x${real_dvdplay_tree}" = "x"
  15537.       then
  15538.                 echo "$as_me:$LINENO: result: no" >&5
  15539. echo "${ECHO_T}no" >&6
  15540.         { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvdplay_tree}" >&5
  15541. echo "$as_me: error: cannot cd to ${with_dvdplay_tree}" >&2;}
  15542.    { (exit 1); exit 1; }; }
  15543.       fi
  15544.       if test -f "${real_dvdplay_tree}/src/.libs/libdvdplay.a"
  15545.       then
  15546.                 echo "$as_me:$LINENO: result: ${real_dvdplay_tree}/src/.libs/libdvdplay.a" >&5
  15547. echo "${ECHO_T}${real_dvdplay_tree}/src/.libs/libdvdplay.a" >&6
  15548.         BUILTINS="${BUILTINS} dvdplay"
  15549.         LDFLAGS_dvdplay="${LDFLAGS_dvdplay} -L${real_dvdplay_tree}/src/.libs -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}"
  15550.         CPPFLAGS_dvdplay="${CPPFLAGS_dvdplay} ${CPPFLAGS_dvdread} -I${real_dvdplay_tree}/src"
  15551.       else
  15552.                 echo "$as_me:$LINENO: result: no" >&5
  15553. echo "${ECHO_T}no" >&6
  15554.         { { echo "$as_me:$LINENO: error: cannot find ${real_dvdplay_tree}/src/.libs/libdvdplay.a, make sure you compiled libdvdplay in ${with_dvdplay_tree}" >&5
  15555. echo "$as_me: error: cannot find ${real_dvdplay_tree}/src/.libs/libdvdplay.a, make sure you compiled libdvdplay in ${with_dvdplay_tree}" >&2;}
  15556.    { (exit 1); exit 1; }; }
  15557.       fi
  15558.     fi
  15559.   else
  15560.     echo "$as_me:$LINENO: checking for dvdplay headers in ${with_dvdplay}" >&5
  15561. echo $ECHO_N "checking for dvdplay headers in ${with_dvdplay}... $ECHO_C" >&6
  15562.     if test -f ${with_dvdplay}/include/dvdplay/dvdplay.h
  15563.     then
  15564.             echo "$as_me:$LINENO: result: yes" >&5
  15565. echo "${ECHO_T}yes" >&6
  15566.       PLUGINS="${PLUGINS} dvdplay"
  15567.       LDFLAGS_dvdplay="${LDFLAGS_dvdplay} -L${with_dvdplay}/lib -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}"
  15568.       CPPFLAGS_dvdplay="${CPPFLAGS_dvdplay} ${CPPFLAGS_dvdread} -I${with_dvdplay}/include"
  15569.     else
  15570.             echo "$as_me:$LINENO: result: no" >&5
  15571. echo "${ECHO_T}no" >&6
  15572.       { { echo "$as_me:$LINENO: error: cannot find ${with_dvdplay}/include/dvdplay/dvdplay.h" >&5
  15573. echo "$as_me: error: cannot find ${with_dvdplay}/include/dvdplay/dvdplay.h" >&2;}
  15574.    { (exit 1); exit 1; }; }
  15575.     fi
  15576.   fi
  15577. fi
  15578.  
  15579. # Check whether --enable-dvbpsi or --disable-dvbpsi was given.
  15580. if test "${enable_dvbpsi+set}" = set; then
  15581.   enableval="$enable_dvbpsi"
  15582.  
  15583. fi;
  15584. if test "x${enable_dvbpsi}" != "xno"
  15585. then
  15586.  
  15587. # Check whether --with-dvbpsi or --without-dvbpsi was given.
  15588. if test "${with_dvbpsi+set}" = set; then
  15589.   withval="$with_dvbpsi"
  15590.  
  15591. fi;
  15592.  
  15593. # Check whether --with-dvbpsi or --without-dvbpsi was given.
  15594. if test "${with_dvbpsi+set}" = set; then
  15595.   withval="$with_dvbpsi"
  15596.  
  15597. fi;
  15598.   case "x${with_dvbpsi}" in
  15599.   x|xyes)
  15600.     if test "x${with_dvbpsi_tree}" = "x"
  15601.     then
  15602.  
  15603. for ac_header in dvbpsi/dr.h
  15604. do
  15605. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  15606. echo "$as_me:$LINENO: checking for $ac_header" >&5
  15607. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15608. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15609.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15610. else
  15611.   cat >conftest.$ac_ext <<_ACEOF
  15612. #line $LINENO "configure"
  15613. /* confdefs.h.  */
  15614. _ACEOF
  15615. cat confdefs.h >>conftest.$ac_ext
  15616. cat >>conftest.$ac_ext <<_ACEOF
  15617. /* end confdefs.h.  */
  15618. #include <stdint.h>
  15619. #include <dvbpsi/dvbpsi.h>
  15620. #include <dvbpsi/descriptor.h>
  15621. #include <dvbpsi/pat.h>
  15622. #include <dvbpsi/pmt.h>
  15623.  
  15624. #include <$ac_header>
  15625. _ACEOF
  15626. rm -f conftest.$ac_objext
  15627. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  15628.   (eval $ac_compile) 2>&5
  15629.   ac_status=$?
  15630.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15631.   (exit $ac_status); } &&
  15632.          { ac_try='test -s conftest.$ac_objext'
  15633.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  15634.   (eval $ac_try) 2>&5
  15635.   ac_status=$?
  15636.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15637.   (exit $ac_status); }; }; then
  15638.   eval "$as_ac_Header=yes"
  15639. else
  15640.   echo "$as_me: failed program was:" >&5
  15641. sed 's/^/| /' conftest.$ac_ext >&5
  15642.  
  15643. eval "$as_ac_Header=no"
  15644. fi
  15645. rm -f conftest.$ac_objext conftest.$ac_ext
  15646. fi
  15647. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15648. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15649. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  15650.   cat >>confdefs.h <<_ACEOF
  15651. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  15652. _ACEOF
  15653.   PLUGINS="${PLUGINS} ts_dvbpsi"
  15654.           LDFLAGS_ts_dvbpsi="${LDFLAGS_ts_dvbpsi} -ldvbpsi"
  15655.           PLUGINS="${PLUGINS} mux_ts_dvbpsi"
  15656.           LDFLAGS_mux_ts_dvbpsi="${LDFLAGS_mux_ts_dvbpsi} -ldvbpsi"
  15657. else
  15658.     { echo "$as_me:$LINENO: WARNING: cannot find libdvbpsi headers" >&5
  15659. echo "$as_me: WARNING: cannot find libdvbpsi headers" >&2;}
  15660. fi
  15661.  
  15662. done
  15663.  
  15664.     else
  15665.       echo "$as_me:$LINENO: checking for libdvbpsi.a in ${with_dvbpsi_tree}" >&5
  15666. echo $ECHO_N "checking for libdvbpsi.a in ${with_dvbpsi_tree}... $ECHO_C" >&6
  15667.       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
  15668.       if test "x${real_dvbpsi_tree}" = "x"
  15669.       then
  15670.                 echo "$as_me:$LINENO: result: no" >&5
  15671. echo "${ECHO_T}no" >&6
  15672.         { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvbpsi_tree}" >&5
  15673. echo "$as_me: error: cannot cd to ${with_dvbpsi_tree}" >&2;}
  15674.    { (exit 1); exit 1; }; }
  15675.       fi
  15676.       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
  15677.       then
  15678.                 echo "$as_me:$LINENO: result: ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&5
  15679. echo "${ECHO_T}${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&6
  15680.         BUILTINS="${BUILTINS} ts_dvbpsi"
  15681.         LDFLAGS_ts_dvbpsi="${LDFLAGS_ts_dvbpsi} -L${real_dvbpsi_tree}/src/.libs -ldvbpsi"
  15682.         CPPFLAGS_ts_dvbpsi="${CPPFLAGS_ts_dvbpsi} -I${real_dvbpsi_tree}/src"
  15683.  
  15684.         BUILTINS="${BUILTINS} mux_ts_dvbpsi"
  15685.         LDFLAGS_mux_ts_dvbpsi="${LDFLAGS_mux_ts_dvbpsi} -L${real_dvbpsi_tree}/src/.libs -ldvbpsi"
  15686.         CPPFLAGS_mux_ts_dvbpsi="${CPPFLAGS_mux_ts_dvbpsi} -I${real_dvbpsi_tree}/src"
  15687.  
  15688.       else
  15689.                 echo "$as_me:$LINENO: result: no" >&5
  15690. echo "${ECHO_T}no" >&6
  15691.         { { echo "$as_me:$LINENO: error: cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" >&5
  15692. echo "$as_me: error: cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" >&2;}
  15693.    { (exit 1); exit 1; }; }
  15694.       fi
  15695.     fi
  15696.   ;;
  15697.   xno)
  15698.       ;;
  15699.   *)
  15700.     echo "$as_me:$LINENO: checking for dvbpsi headers in ${with_dvbpsi}" >&5
  15701. echo $ECHO_N "checking for dvbpsi headers in ${with_dvbpsi}... $ECHO_C" >&6
  15702.     if test "x${with_dvbpsi}" = "x"
  15703.     then
  15704.       LDFLAGS_test=""
  15705.       CPPFLAGS_test=""
  15706.     else
  15707.       LDFLAGS_test="-L${with_dvbpsi}/lib"
  15708.       CPPFLAGS_test="-I${with_dvbpsi}/include"
  15709.     fi
  15710.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
  15711.     if test "${ac_cv_header_dvbpsi_dr_h+set}" = set; then
  15712.   echo "$as_me:$LINENO: checking for dvbpsi/dr.h" >&5
  15713. echo $ECHO_N "checking for dvbpsi/dr.h... $ECHO_C" >&6
  15714. if test "${ac_cv_header_dvbpsi_dr_h+set}" = set; then
  15715.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15716. fi
  15717. echo "$as_me:$LINENO: result: $ac_cv_header_dvbpsi_dr_h" >&5
  15718. echo "${ECHO_T}$ac_cv_header_dvbpsi_dr_h" >&6
  15719. else
  15720.   # Is the header compilable?
  15721. echo "$as_me:$LINENO: checking dvbpsi/dr.h usability" >&5
  15722. echo $ECHO_N "checking dvbpsi/dr.h usability... $ECHO_C" >&6
  15723. cat >conftest.$ac_ext <<_ACEOF
  15724. #line $LINENO "configure"
  15725. /* confdefs.h.  */
  15726. _ACEOF
  15727. cat confdefs.h >>conftest.$ac_ext
  15728. cat >>conftest.$ac_ext <<_ACEOF
  15729. /* end confdefs.h.  */
  15730. $ac_includes_default
  15731. #include <dvbpsi/dr.h>
  15732. _ACEOF
  15733. rm -f conftest.$ac_objext
  15734. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  15735.   (eval $ac_compile) 2>&5
  15736.   ac_status=$?
  15737.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15738.   (exit $ac_status); } &&
  15739.          { ac_try='test -s conftest.$ac_objext'
  15740.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  15741.   (eval $ac_try) 2>&5
  15742.   ac_status=$?
  15743.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15744.   (exit $ac_status); }; }; then
  15745.   ac_header_compiler=yes
  15746. else
  15747.   echo "$as_me: failed program was:" >&5
  15748. sed 's/^/| /' conftest.$ac_ext >&5
  15749.  
  15750. ac_header_compiler=no
  15751. fi
  15752. rm -f conftest.$ac_objext conftest.$ac_ext
  15753. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  15754. echo "${ECHO_T}$ac_header_compiler" >&6
  15755.  
  15756. # Is the header present?
  15757. echo "$as_me:$LINENO: checking dvbpsi/dr.h presence" >&5
  15758. echo $ECHO_N "checking dvbpsi/dr.h presence... $ECHO_C" >&6
  15759. cat >conftest.$ac_ext <<_ACEOF
  15760. #line $LINENO "configure"
  15761. /* confdefs.h.  */
  15762. _ACEOF
  15763. cat confdefs.h >>conftest.$ac_ext
  15764. cat >>conftest.$ac_ext <<_ACEOF
  15765. /* end confdefs.h.  */
  15766. #include <dvbpsi/dr.h>
  15767. _ACEOF
  15768. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  15769.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  15770.   ac_status=$?
  15771.   grep -v '^ *+' conftest.er1 >conftest.err
  15772.   rm -f conftest.er1
  15773.   cat conftest.err >&5
  15774.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15775.   (exit $ac_status); } >/dev/null; then
  15776.   if test -s conftest.err; then
  15777.     ac_cpp_err=$ac_c_preproc_warn_flag
  15778.   else
  15779.     ac_cpp_err=
  15780.   fi
  15781. else
  15782.   ac_cpp_err=yes
  15783. fi
  15784. if test -z "$ac_cpp_err"; then
  15785.   ac_header_preproc=yes
  15786. else
  15787.   echo "$as_me: failed program was:" >&5
  15788. sed 's/^/| /' conftest.$ac_ext >&5
  15789.  
  15790.   ac_header_preproc=no
  15791. fi
  15792. rm -f conftest.err conftest.$ac_ext
  15793. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  15794. echo "${ECHO_T}$ac_header_preproc" >&6
  15795.  
  15796. # So?  What about this header?
  15797. case $ac_header_compiler:$ac_header_preproc in
  15798.   yes:no )
  15799.     { echo "$as_me:$LINENO: WARNING: dvbpsi/dr.h: accepted by the compiler, rejected by the preprocessor!" >&5
  15800. echo "$as_me: WARNING: dvbpsi/dr.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  15801.     { echo "$as_me:$LINENO: WARNING: dvbpsi/dr.h: proceeding with the preprocessor's result" >&5
  15802. echo "$as_me: WARNING: dvbpsi/dr.h: proceeding with the preprocessor's result" >&2;}
  15803.     (
  15804.       cat <<\_ASBOX
  15805. ## ------------------------------------ ##
  15806. ## Report this to bug-autoconf@gnu.org. ##
  15807. ## ------------------------------------ ##
  15808. _ASBOX
  15809.     ) |
  15810.       sed "s/^/$as_me: WARNING:     /" >&2
  15811.     ;;
  15812.   no:yes )
  15813.     { echo "$as_me:$LINENO: WARNING: dvbpsi/dr.h: present but cannot be compiled" >&5
  15814. echo "$as_me: WARNING: dvbpsi/dr.h: present but cannot be compiled" >&2;}
  15815.     { echo "$as_me:$LINENO: WARNING: dvbpsi/dr.h: check for missing prerequisite headers?" >&5
  15816. echo "$as_me: WARNING: dvbpsi/dr.h: check for missing prerequisite headers?" >&2;}
  15817.     { echo "$as_me:$LINENO: WARNING: dvbpsi/dr.h: proceeding with the preprocessor's result" >&5
  15818. echo "$as_me: WARNING: dvbpsi/dr.h: proceeding with the preprocessor's result" >&2;}
  15819.     (
  15820.       cat <<\_ASBOX
  15821. ## ------------------------------------ ##
  15822. ## Report this to bug-autoconf@gnu.org. ##
  15823. ## ------------------------------------ ##
  15824. _ASBOX
  15825.     ) |
  15826.       sed "s/^/$as_me: WARNING:     /" >&2
  15827.     ;;
  15828. esac
  15829. echo "$as_me:$LINENO: checking for dvbpsi/dr.h" >&5
  15830. echo $ECHO_N "checking for dvbpsi/dr.h... $ECHO_C" >&6
  15831. if test "${ac_cv_header_dvbpsi_dr_h+set}" = set; then
  15832.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15833. else
  15834.   ac_cv_header_dvbpsi_dr_h=$ac_header_preproc
  15835. fi
  15836. echo "$as_me:$LINENO: result: $ac_cv_header_dvbpsi_dr_h" >&5
  15837. echo "${ECHO_T}$ac_cv_header_dvbpsi_dr_h" >&6
  15838.  
  15839. fi
  15840. if test $ac_cv_header_dvbpsi_dr_h = yes; then
  15841.  
  15842.       PLUGINS="${PLUGINS} ts_dvbpsi"
  15843.       LDFLAGS_ts_dvbpsi="${LDFLAGS_ts_dvbpsi} ${LDFLAGS_test} -ldvbpsi"
  15844.       CPPFLAGS_ts_dvbpsi="${CPPFLAGS_ts_dvbpsi} ${CPPFLAGS_test}"
  15845.       PLUGINS="${PLUGINS} mux_ts_dvbpsi"
  15846.       LDFLAGS_mux_ts_dvbpsi="${LDFLAGS_mux_ts_dvbpsi} ${LDFLAGS_test} -ldvbpsi"
  15847.       CPPFLAGS_mux_ts_dvbpsi="${CPPFLAGS_mux_ts_dvbpsi} ${CPPFLAGS_test}"
  15848.  
  15849.  
  15850. else
  15851.  
  15852.       if test "x${enable_dvbpsi}" != "x"
  15853.       then
  15854.         { { echo "$as_me:$LINENO: error: Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" >&5
  15855. echo "$as_me: error: Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" >&2;}
  15856.    { (exit 1); exit 1; }; }
  15857.       fi
  15858.  
  15859. fi
  15860.  
  15861.  
  15862.     CPPFLAGS="${CPPFLAGS_save}"
  15863.   ;;
  15864.   esac
  15865. fi
  15866.  
  15867. # Check whether --enable-v4l or --disable-v4l was given.
  15868. if test "${enable_v4l+set}" = set; then
  15869.   enableval="$enable_v4l"
  15870.  
  15871. fi;
  15872. if test "x${enable_v4l}" = "xyes"
  15873. then
  15874.  
  15875. for ac_header in libv4l/v4l.h
  15876. do
  15877. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  15878. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15879.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  15880. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15881. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15882.   echo $ECHO_N "(cached) $ECHO_C" >&6
  15883. fi
  15884. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  15885. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  15886. else
  15887.   # Is the header compilable?
  15888. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  15889. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  15890. cat >conftest.$ac_ext <<_ACEOF
  15891. #line $LINENO "configure"
  15892. /* confdefs.h.  */
  15893. _ACEOF
  15894. cat confdefs.h >>conftest.$ac_ext
  15895. cat >>conftest.$ac_ext <<_ACEOF
  15896. /* end confdefs.h.  */
  15897. $ac_includes_default
  15898. #include <$ac_header>
  15899. _ACEOF
  15900. rm -f conftest.$ac_objext
  15901. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  15902.   (eval $ac_compile) 2>&5
  15903.   ac_status=$?
  15904.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15905.   (exit $ac_status); } &&
  15906.          { ac_try='test -s conftest.$ac_objext'
  15907.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  15908.   (eval $ac_try) 2>&5
  15909.   ac_status=$?
  15910.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15911.   (exit $ac_status); }; }; then
  15912.   ac_header_compiler=yes
  15913. else
  15914.   echo "$as_me: failed program was:" >&5
  15915. sed 's/^/| /' conftest.$ac_ext >&5
  15916.  
  15917. ac_header_compiler=no
  15918. fi
  15919. rm -f conftest.$ac_objext conftest.$ac_ext
  15920. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  15921. echo "${ECHO_T}$ac_header_compiler" >&6
  15922.  
  15923. # Is the header present?
  15924. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  15925. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  15926. cat >conftest.$ac_ext <<_ACEOF
  15927. #line $LINENO "configure"
  15928. /* confdefs.h.  */
  15929. _ACEOF
  15930. cat confdefs.h >>conftest.$ac_ext
  15931. cat >>conftest.$ac_ext <<_ACEOF
  15932. /* end confdefs.h.  */
  15933. #include <$ac_header>
  15934. _ACEOF
  15935. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  15936.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  15937.   ac_status=$?
  15938.   grep -v '^ *+' conftest.er1 >conftest.err
  15939.   rm -f conftest.er1
  15940.   cat conftest.err >&5
  15941.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  15942.   (exit $ac_status); } >/dev/null; then
  15943.   if test -s conftest.err; then
  15944.     ac_cpp_err=$ac_c_preproc_warn_flag
  15945.   else
  15946.     ac_cpp_err=
  15947.   fi
  15948. else
  15949.   ac_cpp_err=yes
  15950. fi
  15951. if test -z "$ac_cpp_err"; then
  15952.   ac_header_preproc=yes
  15953. else
  15954.   echo "$as_me: failed program was:" >&5
  15955. sed 's/^/| /' conftest.$ac_ext >&5
  15956.  
  15957.   ac_header_preproc=no
  15958. fi
  15959. rm -f conftest.err conftest.$ac_ext
  15960. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  15961. echo "${ECHO_T}$ac_header_preproc" >&6
  15962.  
  15963. # So?  What about this header?
  15964. case $ac_header_compiler:$ac_header_preproc in
  15965.   yes:no )
  15966.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  15967. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  15968.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15969. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15970.     (
  15971.       cat <<\_ASBOX
  15972. ## ------------------------------------ ##
  15973. ## Report this to bug-autoconf@gnu.org. ##
  15974. ## ------------------------------------ ##
  15975. _ASBOX
  15976.     ) |
  15977.       sed "s/^/$as_me: WARNING:     /" >&2
  15978.     ;;
  15979.   no:yes )
  15980.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  15981. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  15982.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  15983. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  15984.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  15985. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  15986.     (
  15987.       cat <<\_ASBOX
  15988. ## ------------------------------------ ##
  15989. ## Report this to bug-autoconf@gnu.org. ##
  15990. ## ------------------------------------ ##
  15991. _ASBOX
  15992.     ) |
  15993.       sed "s/^/$as_me: WARNING:     /" >&2
  15994.     ;;
  15995. esac
  15996. echo "$as_me:$LINENO: checking for $ac_header" >&5
  15997. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  15998. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  15999.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16000. else
  16001.   eval "$as_ac_Header=$ac_header_preproc"
  16002. fi
  16003. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16004. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16005.  
  16006. fi
  16007. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  16008.   cat >>confdefs.h <<_ACEOF
  16009. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  16010. _ACEOF
  16011.  
  16012.     PLUGINS="${PLUGINS} v4l"
  16013.  
  16014. fi
  16015.  
  16016. done
  16017.  
  16018. fi
  16019.  
  16020. # Check whether --enable-vcd or --disable-vcd was given.
  16021. if test "${enable_vcd+set}" = set; then
  16022.   enableval="$enable_vcd"
  16023.  
  16024. fi;
  16025.  
  16026. if test "x${enable_vcd}" != "xno"
  16027. then
  16028.   echo "$as_me:$LINENO: checking for cdrom_msf0 in linux/cdrom.h" >&5
  16029. echo $ECHO_N "checking for cdrom_msf0 in linux/cdrom.h... $ECHO_C" >&6
  16030.   cat >conftest.$ac_ext <<_ACEOF
  16031. #line $LINENO "configure"
  16032. /* confdefs.h.  */
  16033. _ACEOF
  16034. cat confdefs.h >>conftest.$ac_ext
  16035. cat >>conftest.$ac_ext <<_ACEOF
  16036. /* end confdefs.h.  */
  16037. #include <linux/cdrom.h>
  16038.  
  16039. _ACEOF
  16040. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  16041.   $EGREP "cdrom_msf0" >/dev/null 2>&1; then
  16042.  
  16043.     echo "$as_me:$LINENO: result: yes" >&5
  16044. echo "${ECHO_T}yes" >&6
  16045.     PLUGINS="${PLUGINS} vcd"
  16046.  
  16047. else
  16048.  
  16049.     echo "$as_me:$LINENO: result: no" >&5
  16050. echo "${ECHO_T}no" >&6
  16051.  
  16052. fi
  16053. rm -f conftest*
  16054.  
  16055.  
  16056.   echo "$as_me:$LINENO: checking for scsireq in sys/scsiio.h" >&5
  16057. echo $ECHO_N "checking for scsireq in sys/scsiio.h... $ECHO_C" >&6
  16058.   cat >conftest.$ac_ext <<_ACEOF
  16059. #line $LINENO "configure"
  16060. /* confdefs.h.  */
  16061. _ACEOF
  16062. cat confdefs.h >>conftest.$ac_ext
  16063. cat >>conftest.$ac_ext <<_ACEOF
  16064. /* end confdefs.h.  */
  16065. #include <sys/scsiio.h>
  16066.  
  16067. _ACEOF
  16068. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  16069.   $EGREP "scsireq" >/dev/null 2>&1; then
  16070.  
  16071.     echo "$as_me:$LINENO: result: yes" >&5
  16072. echo "${ECHO_T}yes" >&6
  16073.     PLUGINS="${PLUGINS} vcd"
  16074.  
  16075. cat >>confdefs.h <<\_ACEOF
  16076. #define HAVE_SCSIREQ_IN_SYS_SCSIIO_H 1
  16077. _ACEOF
  16078.  
  16079.  
  16080. else
  16081.  
  16082.     echo "$as_me:$LINENO: result: no" >&5
  16083. echo "${ECHO_T}no" >&6
  16084.  
  16085. fi
  16086. rm -f conftest*
  16087.  
  16088.  
  16089.   echo "$as_me:$LINENO: checking for ioc_toc_header in sys/cdio.h" >&5
  16090. echo $ECHO_N "checking for ioc_toc_header in sys/cdio.h... $ECHO_C" >&6
  16091.   cat >conftest.$ac_ext <<_ACEOF
  16092. #line $LINENO "configure"
  16093. /* confdefs.h.  */
  16094. _ACEOF
  16095. cat confdefs.h >>conftest.$ac_ext
  16096. cat >>conftest.$ac_ext <<_ACEOF
  16097. /* end confdefs.h.  */
  16098. #include <sys/cdio.h>
  16099.  
  16100. _ACEOF
  16101. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  16102.   $EGREP "ioc_toc_header " >/dev/null 2>&1; then
  16103.  
  16104.     echo "$as_me:$LINENO: result: yes" >&5
  16105. echo "${ECHO_T}yes" >&6
  16106.     PLUGINS="${PLUGINS} vcd"
  16107.  
  16108. cat >>confdefs.h <<\_ACEOF
  16109. #define HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H 1
  16110. _ACEOF
  16111.  
  16112.  
  16113. else
  16114.  
  16115.     echo "$as_me:$LINENO: result: no" >&5
  16116. echo "${ECHO_T}no" >&6
  16117.  
  16118. fi
  16119. rm -f conftest*
  16120.  
  16121.  
  16122.   if test "x${SYS}" = "xbsdi" -o "x${SYS}" = "xmingw32"
  16123.   then
  16124.     PLUGINS="${PLUGINS} vcd"
  16125.   fi
  16126.  
  16127.   if test "x${SYS}" = "xdarwin"
  16128.   then
  16129.     PLUGINS="${PLUGINS} vcd"
  16130.     LDFLAGS_vcd="${LDFLAGS_vcd} -framework IOKit -framework CoreFoundation"
  16131.   fi
  16132. fi
  16133.  
  16134. # Check whether --enable-satellite or --disable-satellite was given.
  16135. if test "${enable_satellite+set}" = set; then
  16136.   enableval="$enable_satellite"
  16137.    if test "x${enable_satellite}" = "xyes"
  16138.     then
  16139.       PLUGINS="${PLUGINS} satellite"
  16140.     fi
  16141. fi;
  16142.  
  16143. if test "x${SYS}" != "xnto" && test "x${SYS}" != "xmingw32"
  16144. then
  16145.   have_ipv6=false
  16146.  
  16147. for ac_func in inet_pton
  16148. do
  16149. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  16150. echo "$as_me:$LINENO: checking for $ac_func" >&5
  16151. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  16152. if eval "test \"\${$as_ac_var+set}\" = set"; then
  16153.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16154. else
  16155.   cat >conftest.$ac_ext <<_ACEOF
  16156. #line $LINENO "configure"
  16157. /* confdefs.h.  */
  16158. _ACEOF
  16159. cat confdefs.h >>conftest.$ac_ext
  16160. cat >>conftest.$ac_ext <<_ACEOF
  16161. /* end confdefs.h.  */
  16162. /* System header to define __stub macros and hopefully few prototypes,
  16163.     which can conflict with char $ac_func (); below.
  16164.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  16165.     <limits.h> exists even on freestanding compilers.  */
  16166. #ifdef __STDC__
  16167. # include <limits.h>
  16168. #else
  16169. # include <assert.h>
  16170. #endif
  16171. /* Override any gcc2 internal prototype to avoid an error.  */
  16172. #ifdef __cplusplus
  16173. extern "C"
  16174. {
  16175. #endif
  16176. /* We use char because int might match the return type of a gcc2
  16177.    builtin and then its argument prototype would still apply.  */
  16178. char $ac_func ();
  16179. /* The GNU C library defines this for functions which it implements
  16180.     to always fail with ENOSYS.  Some functions are actually named
  16181.     something starting with __ and the normal name is an alias.  */
  16182. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  16183. choke me
  16184. #else
  16185. char (*f) () = $ac_func;
  16186. #endif
  16187. #ifdef __cplusplus
  16188. }
  16189. #endif
  16190.  
  16191. int
  16192. main ()
  16193. {
  16194. return f != $ac_func;
  16195.   ;
  16196.   return 0;
  16197. }
  16198. _ACEOF
  16199. rm -f conftest.$ac_objext conftest$ac_exeext
  16200. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16201.   (eval $ac_link) 2>&5
  16202.   ac_status=$?
  16203.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16204.   (exit $ac_status); } &&
  16205.          { ac_try='test -s conftest$ac_exeext'
  16206.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16207.   (eval $ac_try) 2>&5
  16208.   ac_status=$?
  16209.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16210.   (exit $ac_status); }; }; then
  16211.   eval "$as_ac_var=yes"
  16212. else
  16213.   echo "$as_me: failed program was:" >&5
  16214. sed 's/^/| /' conftest.$ac_ext >&5
  16215.  
  16216. eval "$as_ac_var=no"
  16217. fi
  16218. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16219. fi
  16220. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  16221. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  16222. if test `eval echo '${'$as_ac_var'}'` = yes; then
  16223.   cat >>confdefs.h <<_ACEOF
  16224. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  16225. _ACEOF
  16226.  have_ipv6=:
  16227. else
  16228.  
  16229.     echo "$as_me:$LINENO: checking for inet_pton in -lresolv" >&5
  16230. echo $ECHO_N "checking for inet_pton in -lresolv... $ECHO_C" >&6
  16231. if test "${ac_cv_lib_resolv_inet_pton+set}" = set; then
  16232.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16233. else
  16234.   ac_check_lib_save_LIBS=$LIBS
  16235. LIBS="-lresolv  $LIBS"
  16236. cat >conftest.$ac_ext <<_ACEOF
  16237. #line $LINENO "configure"
  16238. /* confdefs.h.  */
  16239. _ACEOF
  16240. cat confdefs.h >>conftest.$ac_ext
  16241. cat >>conftest.$ac_ext <<_ACEOF
  16242. /* end confdefs.h.  */
  16243.  
  16244. /* Override any gcc2 internal prototype to avoid an error.  */
  16245. #ifdef __cplusplus
  16246. extern "C"
  16247. #endif
  16248. /* We use char because int might match the return type of a gcc2
  16249.    builtin and then its argument prototype would still apply.  */
  16250. char inet_pton ();
  16251. int
  16252. main ()
  16253. {
  16254. inet_pton ();
  16255.   ;
  16256.   return 0;
  16257. }
  16258. _ACEOF
  16259. rm -f conftest.$ac_objext conftest$ac_exeext
  16260. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16261.   (eval $ac_link) 2>&5
  16262.   ac_status=$?
  16263.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16264.   (exit $ac_status); } &&
  16265.          { ac_try='test -s conftest$ac_exeext'
  16266.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16267.   (eval $ac_try) 2>&5
  16268.   ac_status=$?
  16269.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16270.   (exit $ac_status); }; }; then
  16271.   ac_cv_lib_resolv_inet_pton=yes
  16272. else
  16273.   echo "$as_me: failed program was:" >&5
  16274. sed 's/^/| /' conftest.$ac_ext >&5
  16275.  
  16276. ac_cv_lib_resolv_inet_pton=no
  16277. fi
  16278. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16279. LIBS=$ac_check_lib_save_LIBS
  16280. fi
  16281. echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_pton" >&5
  16282. echo "${ECHO_T}$ac_cv_lib_resolv_inet_pton" >&6
  16283. if test $ac_cv_lib_resolv_inet_pton = yes; then
  16284.   have_ipv6=:
  16285.        LDFLAGS_ipv6="${LDFLAGS_ipv6} -lresolv"
  16286. fi
  16287.  
  16288.  
  16289. fi
  16290. done
  16291.  
  16292.   echo "$as_me:$LINENO: checking for sockaddr_in6 in netinet/in.h" >&5
  16293. echo $ECHO_N "checking for sockaddr_in6 in netinet/in.h... $ECHO_C" >&6
  16294.   cat >conftest.$ac_ext <<_ACEOF
  16295. #line $LINENO "configure"
  16296. /* confdefs.h.  */
  16297. _ACEOF
  16298. cat confdefs.h >>conftest.$ac_ext
  16299. cat >>conftest.$ac_ext <<_ACEOF
  16300. /* end confdefs.h.  */
  16301. #include <netinet/in.h>
  16302.  
  16303. _ACEOF
  16304. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  16305.   $EGREP "sockaddr_in6" >/dev/null 2>&1; then
  16306.   echo "$as_me:$LINENO: result: yes" >&5
  16307. echo "${ECHO_T}yes" >&6
  16308. else
  16309.   echo "$as_me:$LINENO: result: no" >&5
  16310. echo "${ECHO_T}no" >&6; have_ipv6=false
  16311. fi
  16312. rm -f conftest*
  16313.  
  16314.   if ${have_ipv6}; then
  16315.     PLUGINS="${PLUGINS} ipv6"
  16316.   fi
  16317. fi
  16318. if test "x${SYS}" = "xmingw32"
  16319. then
  16320.   echo "$as_me:$LINENO: checking for getaddrinfo in ws2tcpip.h" >&5
  16321. echo $ECHO_N "checking for getaddrinfo in ws2tcpip.h... $ECHO_C" >&6
  16322.   cat >conftest.$ac_ext <<_ACEOF
  16323. #line $LINENO "configure"
  16324. /* confdefs.h.  */
  16325. _ACEOF
  16326. cat confdefs.h >>conftest.$ac_ext
  16327. cat >>conftest.$ac_ext <<_ACEOF
  16328. /* end confdefs.h.  */
  16329. #include <ws2tcpip.h>
  16330.  
  16331. _ACEOF
  16332. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  16333.   $EGREP "addrinfo" >/dev/null 2>&1; then
  16334.   echo "$as_me:$LINENO: result: yes" >&5
  16335. echo "${ECHO_T}yes" >&6
  16336.     PLUGINS="${PLUGINS} ipv6"
  16337. else
  16338.   echo "$as_me:$LINENO: result: no" >&5
  16339. echo "${ECHO_T}no" >&6
  16340. fi
  16341. rm -f conftest*
  16342.  
  16343. fi
  16344.  
  16345. # Check whether --enable-ogg or --disable-ogg was given.
  16346. if test "${enable_ogg+set}" = set; then
  16347.   enableval="$enable_ogg"
  16348.  
  16349. fi;
  16350. if test "x${enable_ogg}" != "xno"
  16351. then
  16352.  
  16353. for ac_header in ogg/ogg.h
  16354. do
  16355. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  16356. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16357.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  16358. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  16359. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16360.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16361. fi
  16362. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16363. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16364. else
  16365.   # Is the header compilable?
  16366. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  16367. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  16368. cat >conftest.$ac_ext <<_ACEOF
  16369. #line $LINENO "configure"
  16370. /* confdefs.h.  */
  16371. _ACEOF
  16372. cat confdefs.h >>conftest.$ac_ext
  16373. cat >>conftest.$ac_ext <<_ACEOF
  16374. /* end confdefs.h.  */
  16375. $ac_includes_default
  16376. #include <$ac_header>
  16377. _ACEOF
  16378. rm -f conftest.$ac_objext
  16379. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  16380.   (eval $ac_compile) 2>&5
  16381.   ac_status=$?
  16382.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16383.   (exit $ac_status); } &&
  16384.          { ac_try='test -s conftest.$ac_objext'
  16385.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16386.   (eval $ac_try) 2>&5
  16387.   ac_status=$?
  16388.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16389.   (exit $ac_status); }; }; then
  16390.   ac_header_compiler=yes
  16391. else
  16392.   echo "$as_me: failed program was:" >&5
  16393. sed 's/^/| /' conftest.$ac_ext >&5
  16394.  
  16395. ac_header_compiler=no
  16396. fi
  16397. rm -f conftest.$ac_objext conftest.$ac_ext
  16398. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  16399. echo "${ECHO_T}$ac_header_compiler" >&6
  16400.  
  16401. # Is the header present?
  16402. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  16403. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  16404. cat >conftest.$ac_ext <<_ACEOF
  16405. #line $LINENO "configure"
  16406. /* confdefs.h.  */
  16407. _ACEOF
  16408. cat confdefs.h >>conftest.$ac_ext
  16409. cat >>conftest.$ac_ext <<_ACEOF
  16410. /* end confdefs.h.  */
  16411. #include <$ac_header>
  16412. _ACEOF
  16413. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  16414.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  16415.   ac_status=$?
  16416.   grep -v '^ *+' conftest.er1 >conftest.err
  16417.   rm -f conftest.er1
  16418.   cat conftest.err >&5
  16419.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16420.   (exit $ac_status); } >/dev/null; then
  16421.   if test -s conftest.err; then
  16422.     ac_cpp_err=$ac_c_preproc_warn_flag
  16423.   else
  16424.     ac_cpp_err=
  16425.   fi
  16426. else
  16427.   ac_cpp_err=yes
  16428. fi
  16429. if test -z "$ac_cpp_err"; then
  16430.   ac_header_preproc=yes
  16431. else
  16432.   echo "$as_me: failed program was:" >&5
  16433. sed 's/^/| /' conftest.$ac_ext >&5
  16434.  
  16435.   ac_header_preproc=no
  16436. fi
  16437. rm -f conftest.err conftest.$ac_ext
  16438. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  16439. echo "${ECHO_T}$ac_header_preproc" >&6
  16440.  
  16441. # So?  What about this header?
  16442. case $ac_header_compiler:$ac_header_preproc in
  16443.   yes:no )
  16444.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  16445. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  16446.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  16447. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  16448.     (
  16449.       cat <<\_ASBOX
  16450. ## ------------------------------------ ##
  16451. ## Report this to bug-autoconf@gnu.org. ##
  16452. ## ------------------------------------ ##
  16453. _ASBOX
  16454.     ) |
  16455.       sed "s/^/$as_me: WARNING:     /" >&2
  16456.     ;;
  16457.   no:yes )
  16458.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  16459. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  16460.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  16461. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  16462.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  16463. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  16464.     (
  16465.       cat <<\_ASBOX
  16466. ## ------------------------------------ ##
  16467. ## Report this to bug-autoconf@gnu.org. ##
  16468. ## ------------------------------------ ##
  16469. _ASBOX
  16470.     ) |
  16471.       sed "s/^/$as_me: WARNING:     /" >&2
  16472.     ;;
  16473. esac
  16474. echo "$as_me:$LINENO: checking for $ac_header" >&5
  16475. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  16476. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16477.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16478. else
  16479.   eval "$as_ac_Header=$ac_header_preproc"
  16480. fi
  16481. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16482. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16483.  
  16484. fi
  16485. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  16486.   cat >>confdefs.h <<_ACEOF
  16487. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  16488. _ACEOF
  16489.  
  16490.     echo "$as_me:$LINENO: checking for oggpack_read in -logg" >&5
  16491. echo $ECHO_N "checking for oggpack_read in -logg... $ECHO_C" >&6
  16492. if test "${ac_cv_lib_ogg_oggpack_read+set}" = set; then
  16493.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16494. else
  16495.   ac_check_lib_save_LIBS=$LIBS
  16496. LIBS="-logg  $LIBS"
  16497. cat >conftest.$ac_ext <<_ACEOF
  16498. #line $LINENO "configure"
  16499. /* confdefs.h.  */
  16500. _ACEOF
  16501. cat confdefs.h >>conftest.$ac_ext
  16502. cat >>conftest.$ac_ext <<_ACEOF
  16503. /* end confdefs.h.  */
  16504.  
  16505. /* Override any gcc2 internal prototype to avoid an error.  */
  16506. #ifdef __cplusplus
  16507. extern "C"
  16508. #endif
  16509. /* We use char because int might match the return type of a gcc2
  16510.    builtin and then its argument prototype would still apply.  */
  16511. char oggpack_read ();
  16512. int
  16513. main ()
  16514. {
  16515. oggpack_read ();
  16516.   ;
  16517.   return 0;
  16518. }
  16519. _ACEOF
  16520. rm -f conftest.$ac_objext conftest$ac_exeext
  16521. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16522.   (eval $ac_link) 2>&5
  16523.   ac_status=$?
  16524.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16525.   (exit $ac_status); } &&
  16526.          { ac_try='test -s conftest$ac_exeext'
  16527.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16528.   (eval $ac_try) 2>&5
  16529.   ac_status=$?
  16530.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16531.   (exit $ac_status); }; }; then
  16532.   ac_cv_lib_ogg_oggpack_read=yes
  16533. else
  16534.   echo "$as_me: failed program was:" >&5
  16535. sed 's/^/| /' conftest.$ac_ext >&5
  16536.  
  16537. ac_cv_lib_ogg_oggpack_read=no
  16538. fi
  16539. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16540. LIBS=$ac_check_lib_save_LIBS
  16541. fi
  16542. echo "$as_me:$LINENO: result: $ac_cv_lib_ogg_oggpack_read" >&5
  16543. echo "${ECHO_T}$ac_cv_lib_ogg_oggpack_read" >&6
  16544. if test $ac_cv_lib_ogg_oggpack_read = yes; then
  16545.  
  16546.       PLUGINS="${PLUGINS} ogg"
  16547.       LDFLAGS_ogg="${LDFLAGS_ogg} -logg"
  16548.       echo "$as_me:$LINENO: checking for oggpackB_read in -logg" >&5
  16549. echo $ECHO_N "checking for oggpackB_read in -logg... $ECHO_C" >&6
  16550. if test "${ac_cv_lib_ogg_oggpackB_read+set}" = set; then
  16551.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16552. else
  16553.   ac_check_lib_save_LIBS=$LIBS
  16554. LIBS="-logg  $LIBS"
  16555. cat >conftest.$ac_ext <<_ACEOF
  16556. #line $LINENO "configure"
  16557. /* confdefs.h.  */
  16558. _ACEOF
  16559. cat confdefs.h >>conftest.$ac_ext
  16560. cat >>conftest.$ac_ext <<_ACEOF
  16561. /* end confdefs.h.  */
  16562.  
  16563. /* Override any gcc2 internal prototype to avoid an error.  */
  16564. #ifdef __cplusplus
  16565. extern "C"
  16566. #endif
  16567. /* We use char because int might match the return type of a gcc2
  16568.    builtin and then its argument prototype would still apply.  */
  16569. char oggpackB_read ();
  16570. int
  16571. main ()
  16572. {
  16573. oggpackB_read ();
  16574.   ;
  16575.   return 0;
  16576. }
  16577. _ACEOF
  16578. rm -f conftest.$ac_objext conftest$ac_exeext
  16579. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16580.   (eval $ac_link) 2>&5
  16581.   ac_status=$?
  16582.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16583.   (exit $ac_status); } &&
  16584.          { ac_try='test -s conftest$ac_exeext'
  16585.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16586.   (eval $ac_try) 2>&5
  16587.   ac_status=$?
  16588.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16589.   (exit $ac_status); }; }; then
  16590.   ac_cv_lib_ogg_oggpackB_read=yes
  16591. else
  16592.   echo "$as_me: failed program was:" >&5
  16593. sed 's/^/| /' conftest.$ac_ext >&5
  16594.  
  16595. ac_cv_lib_ogg_oggpackB_read=no
  16596. fi
  16597. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16598. LIBS=$ac_check_lib_save_LIBS
  16599. fi
  16600. echo "$as_me:$LINENO: result: $ac_cv_lib_ogg_oggpackB_read" >&5
  16601. echo "${ECHO_T}$ac_cv_lib_ogg_oggpackB_read" >&6
  16602. if test $ac_cv_lib_ogg_oggpackB_read = yes; then
  16603.  
  16604.         CPPFLAGS_ogg="${CPPFLAGS_ogg} -DHAVE_OGGPACKB"
  16605. fi
  16606.  
  16607. fi
  16608.  
  16609.  
  16610. fi
  16611.  
  16612. done
  16613.  
  16614. fi
  16615.  
  16616.  
  16617.  
  16618. # Check whether --with- or --without- was given.
  16619. if test "${with_+set}" = set; then
  16620.   withval="$with_"
  16621.  
  16622. fi;
  16623.  
  16624. # Check whether --enable-mad or --disable-mad was given.
  16625. if test "${enable_mad+set}" = set; then
  16626.   enableval="$enable_mad"
  16627.  
  16628. fi;
  16629. if test "x${enable_mad}" != "xno"
  16630. then
  16631.  
  16632. # Check whether --with-mad or --without-mad was given.
  16633. if test "${with_mad+set}" = set; then
  16634.   withval="$with_mad"
  16635.  
  16636. fi;
  16637.   if test "x${with_mad}" != "xno" -a "x${with_mad}" != "x"
  16638.   then
  16639.     CPPFLAGS_mpgatofixed32="${CPPFLAGS_mpgatofixed32} -I${with_mad}/include"
  16640.     LDFLAGS_mpgatofixed32="${LDFLAGS_mpgatofixed32} -L${with_mad}/lib"
  16641.   fi
  16642.  
  16643.  
  16644. # Check whether --with-mad-tree or --without-mad-tree was given.
  16645. if test "${with_mad_tree+set}" = set; then
  16646.   withval="$with_mad_tree"
  16647.  
  16648. fi;
  16649.   if test "x${with_mad_tree}" != "xno" -a "x${with_mad_tree}" != "x"
  16650.   then
  16651.     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
  16652.     if test "x${real_mad_tree}" = "x"
  16653.     then
  16654.             echo "$as_me:$LINENO: result: no" >&5
  16655. echo "${ECHO_T}no" >&6
  16656.       { { echo "$as_me:$LINENO: error: ${with_mad_tree} directory doesn't exist" >&5
  16657. echo "$as_me: error: ${with_mad_tree} directory doesn't exist" >&2;}
  16658.    { (exit 1); exit 1; }; }
  16659.     fi
  16660.         echo "$as_me:$LINENO: checking for mad.h in ${real_mad_tree}/libmad" >&5
  16661. echo $ECHO_N "checking for mad.h in ${real_mad_tree}/libmad... $ECHO_C" >&6
  16662.     if test -f ${real_mad_tree}/libmad/mad.h
  16663.     then
  16664.       echo "$as_me:$LINENO: result: yes" >&5
  16665. echo "${ECHO_T}yes" >&6
  16666.       CPPFLAGS_mpgatofixed32="${CPPFLAGS_mpgatofixed32} -I${real_mad_tree}/libmad"
  16667.       LDFLAGS_mpgatofixed32="${LDFLAGS_mpgatofixed32} -L${real_mad_tree}/libmad/.libs"
  16668.       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
  16669.       echo "$as_me:$LINENO: checking for mad_bit_init in -lmad" >&5
  16670. echo $ECHO_N "checking for mad_bit_init in -lmad... $ECHO_C" >&6
  16671. if test "${ac_cv_lib_mad_mad_bit_init+set}" = set; then
  16672.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16673. else
  16674.   ac_check_lib_save_LIBS=$LIBS
  16675. LIBS="-lmad  $LIBS"
  16676. cat >conftest.$ac_ext <<_ACEOF
  16677. #line $LINENO "configure"
  16678. /* confdefs.h.  */
  16679. _ACEOF
  16680. cat confdefs.h >>conftest.$ac_ext
  16681. cat >>conftest.$ac_ext <<_ACEOF
  16682. /* end confdefs.h.  */
  16683.  
  16684. /* Override any gcc2 internal prototype to avoid an error.  */
  16685. #ifdef __cplusplus
  16686. extern "C"
  16687. #endif
  16688. /* We use char because int might match the return type of a gcc2
  16689.    builtin and then its argument prototype would still apply.  */
  16690. char mad_bit_init ();
  16691. int
  16692. main ()
  16693. {
  16694. mad_bit_init ();
  16695.   ;
  16696.   return 0;
  16697. }
  16698. _ACEOF
  16699. rm -f conftest.$ac_objext conftest$ac_exeext
  16700. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16701.   (eval $ac_link) 2>&5
  16702.   ac_status=$?
  16703.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16704.   (exit $ac_status); } &&
  16705.          { ac_try='test -s conftest$ac_exeext'
  16706.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16707.   (eval $ac_try) 2>&5
  16708.   ac_status=$?
  16709.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16710.   (exit $ac_status); }; }; then
  16711.   ac_cv_lib_mad_mad_bit_init=yes
  16712. else
  16713.   echo "$as_me: failed program was:" >&5
  16714. sed 's/^/| /' conftest.$ac_ext >&5
  16715.  
  16716. ac_cv_lib_mad_mad_bit_init=no
  16717. fi
  16718. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16719. LIBS=$ac_check_lib_save_LIBS
  16720. fi
  16721. echo "$as_me:$LINENO: result: $ac_cv_lib_mad_mad_bit_init" >&5
  16722. echo "${ECHO_T}$ac_cv_lib_mad_mad_bit_init" >&6
  16723. if test $ac_cv_lib_mad_mad_bit_init = yes; then
  16724.  
  16725.         BUILTINS="${BUILTINS} mpgatofixed32"
  16726.         LDFLAGS_mpgatofixed32="${LDFLAGS_mpgatofixed32} -lmad"
  16727.  
  16728. else
  16729.    { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled " >&5
  16730. echo "$as_me: error: the specified tree hasn't been compiled " >&2;}
  16731.    { (exit 1); exit 1; }; }
  16732.  
  16733. fi
  16734.  
  16735.       LDFLAGS="${LDFLAGS_save}"
  16736.     else
  16737.       echo "$as_me:$LINENO: result: no" >&5
  16738. echo "${ECHO_T}no" >&6
  16739.       { { echo "$as_me:$LINENO: error: the specified tree doesn't have mad.h" >&5
  16740. echo "$as_me: error: the specified tree doesn't have mad.h" >&2;}
  16741.    { (exit 1); exit 1; }; }
  16742.     fi
  16743.   else
  16744.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
  16745.     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
  16746.  
  16747. for ac_header in mad.h
  16748. do
  16749. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  16750. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16751.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  16752. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  16753. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16754.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16755. fi
  16756. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16757. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16758. else
  16759.   # Is the header compilable?
  16760. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  16761. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  16762. cat >conftest.$ac_ext <<_ACEOF
  16763. #line $LINENO "configure"
  16764. /* confdefs.h.  */
  16765. _ACEOF
  16766. cat confdefs.h >>conftest.$ac_ext
  16767. cat >>conftest.$ac_ext <<_ACEOF
  16768. /* end confdefs.h.  */
  16769. $ac_includes_default
  16770. #include <$ac_header>
  16771. _ACEOF
  16772. rm -f conftest.$ac_objext
  16773. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  16774.   (eval $ac_compile) 2>&5
  16775.   ac_status=$?
  16776.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16777.   (exit $ac_status); } &&
  16778.          { ac_try='test -s conftest.$ac_objext'
  16779.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16780.   (eval $ac_try) 2>&5
  16781.   ac_status=$?
  16782.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16783.   (exit $ac_status); }; }; then
  16784.   ac_header_compiler=yes
  16785. else
  16786.   echo "$as_me: failed program was:" >&5
  16787. sed 's/^/| /' conftest.$ac_ext >&5
  16788.  
  16789. ac_header_compiler=no
  16790. fi
  16791. rm -f conftest.$ac_objext conftest.$ac_ext
  16792. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  16793. echo "${ECHO_T}$ac_header_compiler" >&6
  16794.  
  16795. # Is the header present?
  16796. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  16797. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  16798. cat >conftest.$ac_ext <<_ACEOF
  16799. #line $LINENO "configure"
  16800. /* confdefs.h.  */
  16801. _ACEOF
  16802. cat confdefs.h >>conftest.$ac_ext
  16803. cat >>conftest.$ac_ext <<_ACEOF
  16804. /* end confdefs.h.  */
  16805. #include <$ac_header>
  16806. _ACEOF
  16807. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  16808.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  16809.   ac_status=$?
  16810.   grep -v '^ *+' conftest.er1 >conftest.err
  16811.   rm -f conftest.er1
  16812.   cat conftest.err >&5
  16813.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16814.   (exit $ac_status); } >/dev/null; then
  16815.   if test -s conftest.err; then
  16816.     ac_cpp_err=$ac_c_preproc_warn_flag
  16817.   else
  16818.     ac_cpp_err=
  16819.   fi
  16820. else
  16821.   ac_cpp_err=yes
  16822. fi
  16823. if test -z "$ac_cpp_err"; then
  16824.   ac_header_preproc=yes
  16825. else
  16826.   echo "$as_me: failed program was:" >&5
  16827. sed 's/^/| /' conftest.$ac_ext >&5
  16828.  
  16829.   ac_header_preproc=no
  16830. fi
  16831. rm -f conftest.err conftest.$ac_ext
  16832. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  16833. echo "${ECHO_T}$ac_header_preproc" >&6
  16834.  
  16835. # So?  What about this header?
  16836. case $ac_header_compiler:$ac_header_preproc in
  16837.   yes:no )
  16838.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  16839. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  16840.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  16841. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  16842.     (
  16843.       cat <<\_ASBOX
  16844. ## ------------------------------------ ##
  16845. ## Report this to bug-autoconf@gnu.org. ##
  16846. ## ------------------------------------ ##
  16847. _ASBOX
  16848.     ) |
  16849.       sed "s/^/$as_me: WARNING:     /" >&2
  16850.     ;;
  16851.   no:yes )
  16852.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  16853. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  16854.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  16855. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  16856.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  16857. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  16858.     (
  16859.       cat <<\_ASBOX
  16860. ## ------------------------------------ ##
  16861. ## Report this to bug-autoconf@gnu.org. ##
  16862. ## ------------------------------------ ##
  16863. _ASBOX
  16864.     ) |
  16865.       sed "s/^/$as_me: WARNING:     /" >&2
  16866.     ;;
  16867. esac
  16868. echo "$as_me:$LINENO: checking for $ac_header" >&5
  16869. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  16870. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16871.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16872. else
  16873.   eval "$as_ac_Header=$ac_header_preproc"
  16874. fi
  16875. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16876. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16877.  
  16878. fi
  16879. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  16880.   cat >>confdefs.h <<_ACEOF
  16881. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  16882. _ACEOF
  16883.  
  16884. else
  16885.    { { echo "$as_me:$LINENO: error: Cannot find development headers for libmad..." >&5
  16886. echo "$as_me: error: Cannot find development headers for libmad..." >&2;}
  16887.    { (exit 1); exit 1; }; }
  16888. fi
  16889.  
  16890. done
  16891.  
  16892.     echo "$as_me:$LINENO: checking for mad_bit_init in -lmad" >&5
  16893. echo $ECHO_N "checking for mad_bit_init in -lmad... $ECHO_C" >&6
  16894. if test "${ac_cv_lib_mad_mad_bit_init+set}" = set; then
  16895.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16896. else
  16897.   ac_check_lib_save_LIBS=$LIBS
  16898. LIBS="-lmad  $LIBS"
  16899. cat >conftest.$ac_ext <<_ACEOF
  16900. #line $LINENO "configure"
  16901. /* confdefs.h.  */
  16902. _ACEOF
  16903. cat confdefs.h >>conftest.$ac_ext
  16904. cat >>conftest.$ac_ext <<_ACEOF
  16905. /* end confdefs.h.  */
  16906.  
  16907. /* Override any gcc2 internal prototype to avoid an error.  */
  16908. #ifdef __cplusplus
  16909. extern "C"
  16910. #endif
  16911. /* We use char because int might match the return type of a gcc2
  16912.    builtin and then its argument prototype would still apply.  */
  16913. char mad_bit_init ();
  16914. int
  16915. main ()
  16916. {
  16917. mad_bit_init ();
  16918.   ;
  16919.   return 0;
  16920. }
  16921. _ACEOF
  16922. rm -f conftest.$ac_objext conftest$ac_exeext
  16923. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  16924.   (eval $ac_link) 2>&5
  16925.   ac_status=$?
  16926.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16927.   (exit $ac_status); } &&
  16928.          { ac_try='test -s conftest$ac_exeext'
  16929.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16930.   (eval $ac_try) 2>&5
  16931.   ac_status=$?
  16932.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16933.   (exit $ac_status); }; }; then
  16934.   ac_cv_lib_mad_mad_bit_init=yes
  16935. else
  16936.   echo "$as_me: failed program was:" >&5
  16937. sed 's/^/| /' conftest.$ac_ext >&5
  16938.  
  16939. ac_cv_lib_mad_mad_bit_init=no
  16940. fi
  16941. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  16942. LIBS=$ac_check_lib_save_LIBS
  16943. fi
  16944. echo "$as_me:$LINENO: result: $ac_cv_lib_mad_mad_bit_init" >&5
  16945. echo "${ECHO_T}$ac_cv_lib_mad_mad_bit_init" >&6
  16946. if test $ac_cv_lib_mad_mad_bit_init = yes; then
  16947.  
  16948.       PLUGINS="${PLUGINS} mpgatofixed32"
  16949.       LDFLAGS_mpgatofixed32="${LDFLAGS_mpgatofixed32} -lmad"
  16950. else
  16951.    { { echo "$as_me:$LINENO: error: Cannot find libmad library..." >&5
  16952. echo "$as_me: error: Cannot find libmad library..." >&2;}
  16953.    { (exit 1); exit 1; }; }
  16954. fi
  16955.  
  16956.     CPPFLAGS="${CPPFLAGS_save}"
  16957.     LDFLAGS="${LDFLAGS_save}"
  16958.   fi
  16959. fi
  16960.  
  16961.  
  16962. for ac_header in id3tag.h
  16963. do
  16964. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  16965. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16966.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  16967. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  16968. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  16969.   echo $ECHO_N "(cached) $ECHO_C" >&6
  16970. fi
  16971. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  16972. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  16973. else
  16974.   # Is the header compilable?
  16975. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  16976. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  16977. cat >conftest.$ac_ext <<_ACEOF
  16978. #line $LINENO "configure"
  16979. /* confdefs.h.  */
  16980. _ACEOF
  16981. cat confdefs.h >>conftest.$ac_ext
  16982. cat >>conftest.$ac_ext <<_ACEOF
  16983. /* end confdefs.h.  */
  16984. $ac_includes_default
  16985. #include <$ac_header>
  16986. _ACEOF
  16987. rm -f conftest.$ac_objext
  16988. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  16989.   (eval $ac_compile) 2>&5
  16990.   ac_status=$?
  16991.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16992.   (exit $ac_status); } &&
  16993.          { ac_try='test -s conftest.$ac_objext'
  16994.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  16995.   (eval $ac_try) 2>&5
  16996.   ac_status=$?
  16997.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  16998.   (exit $ac_status); }; }; then
  16999.   ac_header_compiler=yes
  17000. else
  17001.   echo "$as_me: failed program was:" >&5
  17002. sed 's/^/| /' conftest.$ac_ext >&5
  17003.  
  17004. ac_header_compiler=no
  17005. fi
  17006. rm -f conftest.$ac_objext conftest.$ac_ext
  17007. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  17008. echo "${ECHO_T}$ac_header_compiler" >&6
  17009.  
  17010. # Is the header present?
  17011. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  17012. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  17013. cat >conftest.$ac_ext <<_ACEOF
  17014. #line $LINENO "configure"
  17015. /* confdefs.h.  */
  17016. _ACEOF
  17017. cat confdefs.h >>conftest.$ac_ext
  17018. cat >>conftest.$ac_ext <<_ACEOF
  17019. /* end confdefs.h.  */
  17020. #include <$ac_header>
  17021. _ACEOF
  17022. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  17023.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  17024.   ac_status=$?
  17025.   grep -v '^ *+' conftest.er1 >conftest.err
  17026.   rm -f conftest.er1
  17027.   cat conftest.err >&5
  17028.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17029.   (exit $ac_status); } >/dev/null; then
  17030.   if test -s conftest.err; then
  17031.     ac_cpp_err=$ac_c_preproc_warn_flag
  17032.   else
  17033.     ac_cpp_err=
  17034.   fi
  17035. else
  17036.   ac_cpp_err=yes
  17037. fi
  17038. if test -z "$ac_cpp_err"; then
  17039.   ac_header_preproc=yes
  17040. else
  17041.   echo "$as_me: failed program was:" >&5
  17042. sed 's/^/| /' conftest.$ac_ext >&5
  17043.  
  17044.   ac_header_preproc=no
  17045. fi
  17046. rm -f conftest.err conftest.$ac_ext
  17047. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  17048. echo "${ECHO_T}$ac_header_preproc" >&6
  17049.  
  17050. # So?  What about this header?
  17051. case $ac_header_compiler:$ac_header_preproc in
  17052.   yes:no )
  17053.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  17054. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  17055.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17056. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17057.     (
  17058.       cat <<\_ASBOX
  17059. ## ------------------------------------ ##
  17060. ## Report this to bug-autoconf@gnu.org. ##
  17061. ## ------------------------------------ ##
  17062. _ASBOX
  17063.     ) |
  17064.       sed "s/^/$as_me: WARNING:     /" >&2
  17065.     ;;
  17066.   no:yes )
  17067.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  17068. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  17069.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  17070. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  17071.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17072. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17073.     (
  17074.       cat <<\_ASBOX
  17075. ## ------------------------------------ ##
  17076. ## Report this to bug-autoconf@gnu.org. ##
  17077. ## ------------------------------------ ##
  17078. _ASBOX
  17079.     ) |
  17080.       sed "s/^/$as_me: WARNING:     /" >&2
  17081.     ;;
  17082. esac
  17083. echo "$as_me:$LINENO: checking for $ac_header" >&5
  17084. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17085. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17086.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17087. else
  17088.   eval "$as_ac_Header=$ac_header_preproc"
  17089. fi
  17090. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17091. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17092.  
  17093. fi
  17094. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  17095.   cat >>confdefs.h <<_ACEOF
  17096. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  17097. _ACEOF
  17098.  
  17099.  
  17100. for ac_header in zlib.h
  17101. do
  17102. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  17103. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17104.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  17105. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17106. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17107.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17108. fi
  17109. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17110. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17111. else
  17112.   # Is the header compilable?
  17113. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  17114. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  17115. cat >conftest.$ac_ext <<_ACEOF
  17116. #line $LINENO "configure"
  17117. /* confdefs.h.  */
  17118. _ACEOF
  17119. cat confdefs.h >>conftest.$ac_ext
  17120. cat >>conftest.$ac_ext <<_ACEOF
  17121. /* end confdefs.h.  */
  17122. $ac_includes_default
  17123. #include <$ac_header>
  17124. _ACEOF
  17125. rm -f conftest.$ac_objext
  17126. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  17127.   (eval $ac_compile) 2>&5
  17128.   ac_status=$?
  17129.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17130.   (exit $ac_status); } &&
  17131.          { ac_try='test -s conftest.$ac_objext'
  17132.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17133.   (eval $ac_try) 2>&5
  17134.   ac_status=$?
  17135.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17136.   (exit $ac_status); }; }; then
  17137.   ac_header_compiler=yes
  17138. else
  17139.   echo "$as_me: failed program was:" >&5
  17140. sed 's/^/| /' conftest.$ac_ext >&5
  17141.  
  17142. ac_header_compiler=no
  17143. fi
  17144. rm -f conftest.$ac_objext conftest.$ac_ext
  17145. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  17146. echo "${ECHO_T}$ac_header_compiler" >&6
  17147.  
  17148. # Is the header present?
  17149. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  17150. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  17151. cat >conftest.$ac_ext <<_ACEOF
  17152. #line $LINENO "configure"
  17153. /* confdefs.h.  */
  17154. _ACEOF
  17155. cat confdefs.h >>conftest.$ac_ext
  17156. cat >>conftest.$ac_ext <<_ACEOF
  17157. /* end confdefs.h.  */
  17158. #include <$ac_header>
  17159. _ACEOF
  17160. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  17161.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  17162.   ac_status=$?
  17163.   grep -v '^ *+' conftest.er1 >conftest.err
  17164.   rm -f conftest.er1
  17165.   cat conftest.err >&5
  17166.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17167.   (exit $ac_status); } >/dev/null; then
  17168.   if test -s conftest.err; then
  17169.     ac_cpp_err=$ac_c_preproc_warn_flag
  17170.   else
  17171.     ac_cpp_err=
  17172.   fi
  17173. else
  17174.   ac_cpp_err=yes
  17175. fi
  17176. if test -z "$ac_cpp_err"; then
  17177.   ac_header_preproc=yes
  17178. else
  17179.   echo "$as_me: failed program was:" >&5
  17180. sed 's/^/| /' conftest.$ac_ext >&5
  17181.  
  17182.   ac_header_preproc=no
  17183. fi
  17184. rm -f conftest.err conftest.$ac_ext
  17185. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  17186. echo "${ECHO_T}$ac_header_preproc" >&6
  17187.  
  17188. # So?  What about this header?
  17189. case $ac_header_compiler:$ac_header_preproc in
  17190.   yes:no )
  17191.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  17192. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  17193.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17194. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17195.     (
  17196.       cat <<\_ASBOX
  17197. ## ------------------------------------ ##
  17198. ## Report this to bug-autoconf@gnu.org. ##
  17199. ## ------------------------------------ ##
  17200. _ASBOX
  17201.     ) |
  17202.       sed "s/^/$as_me: WARNING:     /" >&2
  17203.     ;;
  17204.   no:yes )
  17205.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  17206. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  17207.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  17208. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  17209.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17210. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17211.     (
  17212.       cat <<\_ASBOX
  17213. ## ------------------------------------ ##
  17214. ## Report this to bug-autoconf@gnu.org. ##
  17215. ## ------------------------------------ ##
  17216. _ASBOX
  17217.     ) |
  17218.       sed "s/^/$as_me: WARNING:     /" >&2
  17219.     ;;
  17220. esac
  17221. echo "$as_me:$LINENO: checking for $ac_header" >&5
  17222. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17223. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17224.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17225. else
  17226.   eval "$as_ac_Header=$ac_header_preproc"
  17227. fi
  17228. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17229. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17230.  
  17231. fi
  17232. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  17233.   cat >>confdefs.h <<_ACEOF
  17234. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  17235. _ACEOF
  17236.  
  17237.     LDFLAGS_id3tag="${LDFLAGS_id3tag} -lid3tag -lz"
  17238.     PLUGINS="${PLUGINS} id3tag"
  17239. fi
  17240.  
  17241. done
  17242.  
  17243. fi
  17244.  
  17245. done
  17246.  
  17247.  
  17248. # Check whether --enable-ffmpeg or --disable-ffmpeg was given.
  17249. if test "${enable_ffmpeg+set}" = set; then
  17250.   enableval="$enable_ffmpeg"
  17251.  
  17252. fi;
  17253. if test "x${enable_ffmpeg}" = "xyes"
  17254. then
  17255.  
  17256. # Check whether --with-ffmpeg or --without-ffmpeg was given.
  17257. if test "${with_ffmpeg+set}" = set; then
  17258.   withval="$with_ffmpeg"
  17259.  
  17260. fi;
  17261.   if test "x${with_ffmpeg}" != "xno" -a "x${with_ffmpeg}" != "x"
  17262.   then
  17263.     CPPFLAGS_ffmpeg="${CPPFLAGS_ffmpeg} -I${with_ffmpeg}/include/ffmpeg"
  17264.     LDFLAGS_ffmpeg="${LDFLAGS_ffmpeg} -L${with_ffmpeg}/lib"
  17265.   fi
  17266.  
  17267.     PLUGINS="${PLUGINS} postprocessing_c"
  17268.   if test "x${ac_cv_mmx_inline}" != "xno"; then
  17269.     PLUGINS="${PLUGINS} postprocessing_mmx"
  17270.   fi
  17271.  
  17272.   if test "x${ac_cv_mmxext_inline}" != "xno"; then
  17273.     PLUGINS="${PLUGINS} postprocessing_mmxext"
  17274.   fi
  17275.  
  17276.  
  17277. # Check whether --with-ffmpeg-tree or --without-ffmpeg-tree was given.
  17278. if test "${with_ffmpeg_tree+set}" = set; then
  17279.   withval="$with_ffmpeg_tree"
  17280.  
  17281. fi;
  17282.   if test "x${with_ffmpeg_tree}" != "x"
  17283.   then
  17284.     echo "$as_me:$LINENO: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5
  17285. echo $ECHO_N "checking for libavcodec.a in ${with_ffmpeg_tree}... $ECHO_C" >&6
  17286.     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
  17287.     if test "x${real_ffmpeg_tree}" = x
  17288.     then
  17289.             echo "$as_me:$LINENO: result: no" >&5
  17290. echo "${ECHO_T}no" >&6
  17291.       { { echo "$as_me:$LINENO: error: cannot cd to ${with_ffmpeg_tree}" >&5
  17292. echo "$as_me: error: cannot cd to ${with_ffmpeg_tree}" >&2;}
  17293.    { (exit 1); exit 1; }; }
  17294.     fi
  17295.     if test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"
  17296.     then
  17297.             echo "$as_me:$LINENO: result: ${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&5
  17298. echo "${ECHO_T}${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&6
  17299.       BUILTINS="${BUILTINS} ffmpeg"
  17300.       LDFLAGS_ffmpeg="${LDFLAGS_ffmpeg} -L${real_ffmpeg_tree}/libavcodec -lavcodec"
  17301.       CPPFLAGS_ffmpeg="${CPPFLAGS_ffmpeg} -I${real_ffmpeg_tree}/libavcodec"
  17302.     else
  17303.             echo "$as_me:$LINENO: result: no" >&5
  17304. echo "${ECHO_T}no" >&6
  17305.       { { echo "$as_me:$LINENO: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}" >&5
  17306. echo "$as_me: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}" >&2;}
  17307.    { (exit 1); exit 1; }; }
  17308.     fi
  17309.   else
  17310.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
  17311.     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
  17312.     echo "$as_me:$LINENO: checking for avcodec_init in -lavcodec" >&5
  17313. echo $ECHO_N "checking for avcodec_init in -lavcodec... $ECHO_C" >&6
  17314. if test "${ac_cv_lib_avcodec_avcodec_init+set}" = set; then
  17315.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17316. else
  17317.   ac_check_lib_save_LIBS=$LIBS
  17318. LIBS="-lavcodec  $LIBS"
  17319. cat >conftest.$ac_ext <<_ACEOF
  17320. #line $LINENO "configure"
  17321. /* confdefs.h.  */
  17322. _ACEOF
  17323. cat confdefs.h >>conftest.$ac_ext
  17324. cat >>conftest.$ac_ext <<_ACEOF
  17325. /* end confdefs.h.  */
  17326.  
  17327. /* Override any gcc2 internal prototype to avoid an error.  */
  17328. #ifdef __cplusplus
  17329. extern "C"
  17330. #endif
  17331. /* We use char because int might match the return type of a gcc2
  17332.    builtin and then its argument prototype would still apply.  */
  17333. char avcodec_init ();
  17334. int
  17335. main ()
  17336. {
  17337. avcodec_init ();
  17338.   ;
  17339.   return 0;
  17340. }
  17341. _ACEOF
  17342. rm -f conftest.$ac_objext conftest$ac_exeext
  17343. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  17344.   (eval $ac_link) 2>&5
  17345.   ac_status=$?
  17346.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17347.   (exit $ac_status); } &&
  17348.          { ac_try='test -s conftest$ac_exeext'
  17349.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17350.   (eval $ac_try) 2>&5
  17351.   ac_status=$?
  17352.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17353.   (exit $ac_status); }; }; then
  17354.   ac_cv_lib_avcodec_avcodec_init=yes
  17355. else
  17356.   echo "$as_me: failed program was:" >&5
  17357. sed 's/^/| /' conftest.$ac_ext >&5
  17358.  
  17359. ac_cv_lib_avcodec_avcodec_init=no
  17360. fi
  17361. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  17362. LIBS=$ac_check_lib_save_LIBS
  17363. fi
  17364. echo "$as_me:$LINENO: result: $ac_cv_lib_avcodec_avcodec_init" >&5
  17365. echo "${ECHO_T}$ac_cv_lib_avcodec_avcodec_init" >&6
  17366. if test $ac_cv_lib_avcodec_avcodec_init = yes; then
  17367.  
  17368.       BUILTINS="${BUILTINS} ffmpeg"
  17369.       LDFLAGS_ffmpeg="${LDFLAGS_ffmpeg} -lavcodec"
  17370. else
  17371.    { { echo "$as_me:$LINENO: error: Cannot find libavcodec library..." >&5
  17372. echo "$as_me: error: Cannot find libavcodec library..." >&2;}
  17373.    { (exit 1); exit 1; }; }
  17374. fi
  17375.  
  17376.     LDFLAGS="${LDFLAGS_save}"
  17377.     CPPFLAGS="${CPPFLAGS_save}"
  17378.   fi
  17379. fi
  17380.  
  17381. # Check whether --enable-faad or --disable-faad was given.
  17382. if test "${enable_faad+set}" = set; then
  17383.   enableval="$enable_faad"
  17384.  
  17385. fi;
  17386. if test "x${enable_faad}" = "xyes"
  17387. then
  17388.  
  17389. # Check whether --with-faad or --without-faad was given.
  17390. if test "${with_faad+set}" = set; then
  17391.   withval="$with_faad"
  17392.  
  17393. fi;
  17394.   if test "x${with_faad}" != "xno" -a "x${with_faad}" != "x"
  17395.   then
  17396.     CPPFLAGS_faad="${CPPFLAGS_faad} -I${with_faad}/include"
  17397.     LDFLAGS_faad="${LDFLAGS_faad} -L${with_faad}/lib"
  17398.   fi
  17399.   LDFLAGS_faad="${LDFLAGS_faad}"
  17400.  
  17401.  
  17402. # Check whether --with-faad-tree or --without-faad-tree was given.
  17403. if test "${with_faad_tree+set}" = set; then
  17404.   withval="$with_faad_tree"
  17405.  
  17406. fi;
  17407.   if test "x${with_faad_tree}" != "x"
  17408.   then
  17409.     echo "$as_me:$LINENO: checking for libfaad.a in ${with_faad_tree}" >&5
  17410. echo $ECHO_N "checking for libfaad.a in ${with_faad_tree}... $ECHO_C" >&6
  17411.     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
  17412.     if test "x${real_faad_tree}" = x
  17413.     then
  17414.             echo "$as_me:$LINENO: result: no" >&5
  17415. echo "${ECHO_T}no" >&6
  17416.       { { echo "$as_me:$LINENO: error: cannot cd to ${with_faad_tree}" >&5
  17417. echo "$as_me: error: cannot cd to ${with_faad_tree}" >&2;}
  17418.    { (exit 1); exit 1; }; }
  17419.     fi
  17420.     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
  17421.     then
  17422.             echo "$as_me:$LINENO: result: ${real_faad_tree}/libfaad/.libs/libfaad.a" >&5
  17423. echo "${ECHO_T}${real_faad_tree}/libfaad/.libs/libfaad.a" >&6
  17424.       BUILTINS="${BUILTINS} faad"
  17425.       LDFLAGS_faad="${LDFLAGS_faad} -L${real_faad_tree}/libfaad/.libs -lfaad"
  17426.       CPPFLAGS_faad="${CPPFLAGS_faad} -I${real_faad_tree}/include"
  17427.     else
  17428.             echo "$as_me:$LINENO: result: no" >&5
  17429. echo "${ECHO_T}no" >&6
  17430.       { { echo "$as_me:$LINENO: error: cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}" >&5
  17431. echo "$as_me: error: cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}" >&2;}
  17432.    { (exit 1); exit 1; }; }
  17433.     fi
  17434.   else
  17435.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
  17436.     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
  17437.  
  17438. for ac_header in faad.h
  17439. do
  17440. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  17441. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17442.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  17443. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17444. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17445.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17446. fi
  17447. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17448. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17449. else
  17450.   # Is the header compilable?
  17451. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  17452. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  17453. cat >conftest.$ac_ext <<_ACEOF
  17454. #line $LINENO "configure"
  17455. /* confdefs.h.  */
  17456. _ACEOF
  17457. cat confdefs.h >>conftest.$ac_ext
  17458. cat >>conftest.$ac_ext <<_ACEOF
  17459. /* end confdefs.h.  */
  17460. $ac_includes_default
  17461. #include <$ac_header>
  17462. _ACEOF
  17463. rm -f conftest.$ac_objext
  17464. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  17465.   (eval $ac_compile) 2>&5
  17466.   ac_status=$?
  17467.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17468.   (exit $ac_status); } &&
  17469.          { ac_try='test -s conftest.$ac_objext'
  17470.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17471.   (eval $ac_try) 2>&5
  17472.   ac_status=$?
  17473.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17474.   (exit $ac_status); }; }; then
  17475.   ac_header_compiler=yes
  17476. else
  17477.   echo "$as_me: failed program was:" >&5
  17478. sed 's/^/| /' conftest.$ac_ext >&5
  17479.  
  17480. ac_header_compiler=no
  17481. fi
  17482. rm -f conftest.$ac_objext conftest.$ac_ext
  17483. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  17484. echo "${ECHO_T}$ac_header_compiler" >&6
  17485.  
  17486. # Is the header present?
  17487. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  17488. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  17489. cat >conftest.$ac_ext <<_ACEOF
  17490. #line $LINENO "configure"
  17491. /* confdefs.h.  */
  17492. _ACEOF
  17493. cat confdefs.h >>conftest.$ac_ext
  17494. cat >>conftest.$ac_ext <<_ACEOF
  17495. /* end confdefs.h.  */
  17496. #include <$ac_header>
  17497. _ACEOF
  17498. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  17499.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  17500.   ac_status=$?
  17501.   grep -v '^ *+' conftest.er1 >conftest.err
  17502.   rm -f conftest.er1
  17503.   cat conftest.err >&5
  17504.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17505.   (exit $ac_status); } >/dev/null; then
  17506.   if test -s conftest.err; then
  17507.     ac_cpp_err=$ac_c_preproc_warn_flag
  17508.   else
  17509.     ac_cpp_err=
  17510.   fi
  17511. else
  17512.   ac_cpp_err=yes
  17513. fi
  17514. if test -z "$ac_cpp_err"; then
  17515.   ac_header_preproc=yes
  17516. else
  17517.   echo "$as_me: failed program was:" >&5
  17518. sed 's/^/| /' conftest.$ac_ext >&5
  17519.  
  17520.   ac_header_preproc=no
  17521. fi
  17522. rm -f conftest.err conftest.$ac_ext
  17523. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  17524. echo "${ECHO_T}$ac_header_preproc" >&6
  17525.  
  17526. # So?  What about this header?
  17527. case $ac_header_compiler:$ac_header_preproc in
  17528.   yes:no )
  17529.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  17530. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  17531.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17532. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17533.     (
  17534.       cat <<\_ASBOX
  17535. ## ------------------------------------ ##
  17536. ## Report this to bug-autoconf@gnu.org. ##
  17537. ## ------------------------------------ ##
  17538. _ASBOX
  17539.     ) |
  17540.       sed "s/^/$as_me: WARNING:     /" >&2
  17541.     ;;
  17542.   no:yes )
  17543.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  17544. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  17545.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  17546. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  17547.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17548. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17549.     (
  17550.       cat <<\_ASBOX
  17551. ## ------------------------------------ ##
  17552. ## Report this to bug-autoconf@gnu.org. ##
  17553. ## ------------------------------------ ##
  17554. _ASBOX
  17555.     ) |
  17556.       sed "s/^/$as_me: WARNING:     /" >&2
  17557.     ;;
  17558. esac
  17559. echo "$as_me:$LINENO: checking for $ac_header" >&5
  17560. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17561. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17562.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17563. else
  17564.   eval "$as_ac_Header=$ac_header_preproc"
  17565. fi
  17566. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17567. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17568.  
  17569. fi
  17570. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  17571.   cat >>confdefs.h <<_ACEOF
  17572. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  17573. _ACEOF
  17574.  
  17575. else
  17576.    { { echo "$as_me:$LINENO: error: Cannot find development headers for libfaad..." >&5
  17577. echo "$as_me: error: Cannot find development headers for libfaad..." >&2;}
  17578.    { (exit 1); exit 1; }; }
  17579. fi
  17580.  
  17581. done
  17582.  
  17583.     echo "$as_me:$LINENO: checking for faacDecOpen in -lfaad" >&5
  17584. echo $ECHO_N "checking for faacDecOpen in -lfaad... $ECHO_C" >&6
  17585. if test "${ac_cv_lib_faad_faacDecOpen+set}" = set; then
  17586.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17587. else
  17588.   ac_check_lib_save_LIBS=$LIBS
  17589. LIBS="-lfaad  $LIBS"
  17590. cat >conftest.$ac_ext <<_ACEOF
  17591. #line $LINENO "configure"
  17592. /* confdefs.h.  */
  17593. _ACEOF
  17594. cat confdefs.h >>conftest.$ac_ext
  17595. cat >>conftest.$ac_ext <<_ACEOF
  17596. /* end confdefs.h.  */
  17597.  
  17598. /* Override any gcc2 internal prototype to avoid an error.  */
  17599. #ifdef __cplusplus
  17600. extern "C"
  17601. #endif
  17602. /* We use char because int might match the return type of a gcc2
  17603.    builtin and then its argument prototype would still apply.  */
  17604. char faacDecOpen ();
  17605. int
  17606. main ()
  17607. {
  17608. faacDecOpen ();
  17609.   ;
  17610.   return 0;
  17611. }
  17612. _ACEOF
  17613. rm -f conftest.$ac_objext conftest$ac_exeext
  17614. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  17615.   (eval $ac_link) 2>&5
  17616.   ac_status=$?
  17617.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17618.   (exit $ac_status); } &&
  17619.          { ac_try='test -s conftest$ac_exeext'
  17620.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17621.   (eval $ac_try) 2>&5
  17622.   ac_status=$?
  17623.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17624.   (exit $ac_status); }; }; then
  17625.   ac_cv_lib_faad_faacDecOpen=yes
  17626. else
  17627.   echo "$as_me: failed program was:" >&5
  17628. sed 's/^/| /' conftest.$ac_ext >&5
  17629.  
  17630. ac_cv_lib_faad_faacDecOpen=no
  17631. fi
  17632. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  17633. LIBS=$ac_check_lib_save_LIBS
  17634. fi
  17635. echo "$as_me:$LINENO: result: $ac_cv_lib_faad_faacDecOpen" >&5
  17636. echo "${ECHO_T}$ac_cv_lib_faad_faacDecOpen" >&6
  17637. if test $ac_cv_lib_faad_faacDecOpen = yes; then
  17638.  
  17639.       PLUGINS="${PLUGINS} faad"
  17640.       LDFLAGS_faad="${LDFLAGS_faad} -lfaad"
  17641. else
  17642.    { { echo "$as_me:$LINENO: error: Cannot find libfaad library..." >&5
  17643. echo "$as_me: error: Cannot find libfaad library..." >&2;}
  17644.    { (exit 1); exit 1; }; }
  17645. fi
  17646.  
  17647.     LDFLAGS="${LDFLAGS_save}"
  17648.     CPPFLAGS="${CPPFLAGS_save}"
  17649.   fi
  17650. fi
  17651.  
  17652.  
  17653. # Check whether --enable-xvid or --disable-xvid was given.
  17654. if test "${enable_xvid+set}" = set; then
  17655.   enableval="$enable_xvid"
  17656.  
  17657. fi;
  17658. if test "x${enable_xvid}" = "xyes"
  17659. then
  17660.  
  17661. # Check whether --with-xvid or --without-xvid was given.
  17662. if test "${with_xvid+set}" = set; then
  17663.   withval="$with_xvid"
  17664.  
  17665. fi;
  17666.   if test "x${with_xvid}" != "xno" -a "x${with_xvid}" != "x"
  17667.   then
  17668.     CPPFLAGS_xvid="${CPPFLAGS_xvid} -I${with_xvid}/include"
  17669.     LDFLAGS_xvid="${LDFLAGS_xvid} -L${with_xvid}/lib"
  17670.   fi
  17671.   LDFLAGS_xvid="${LDFLAGS_xvid}"
  17672.  
  17673.  
  17674. # Check whether --with-xvid-tree or --without-xvid-tree was given.
  17675. if test "${with_xvid_tree+set}" = set; then
  17676.   withval="$with_xvid_tree"
  17677.  
  17678. fi;
  17679.   if test "x${with_xvid_tree}" != "x"
  17680.   then
  17681.     echo "$as_me:$LINENO: checking for libxvidcore.a in ${with_xvid_tree}" >&5
  17682. echo $ECHO_N "checking for libxvidcore.a in ${with_xvid_tree}... $ECHO_C" >&6
  17683.     real_xvid_tree="`cd ${with_xvid_tree} 2>/dev/null && pwd`"
  17684.     if test "x${real_xvid_tree}" = x
  17685.     then
  17686.             echo "$as_me:$LINENO: result: no" >&5
  17687. echo "${ECHO_T}no" >&6
  17688.       { { echo "$as_me:$LINENO: error: cannot cd to ${with_xvid_tree}" >&5
  17689. echo "$as_me: error: cannot cd to ${with_xvid_tree}" >&2;}
  17690.    { (exit 1); exit 1; }; }
  17691.     fi
  17692.     if test -f "${real_xvid_tree}/build/generic/libxvidcore.a"
  17693.     then
  17694.             echo "$as_me:$LINENO: result: ${real_xvid_tree}/build/generic/libxvidcore.a" >&5
  17695. echo "${ECHO_T}${real_xvid_tree}/build/generic/libxvidcore.a" >&6
  17696.       BUILTINS="${BUILTINS} xvid"
  17697.       LDFLAGS_xvid="${LDFLAGS_xvid} -L${real_xvid_tree}/build/generic -lxvidcore"
  17698.       CPPFLAGS_xvid="${CPPFLAGS_xvid} -I${real_xvid_tree}/src"
  17699.     else
  17700.             echo "$as_me:$LINENO: result: no" >&5
  17701. echo "${ECHO_T}no" >&6
  17702.       { { echo "$as_me:$LINENO: error: cannot find ${real_xvid_tree}/build/generic/libxvidcore.a, make sure you compiled libxvidcore in ${with_xvid_tree}" >&5
  17703. echo "$as_me: error: cannot find ${real_xvid_tree}/build/generic/libxvidcore.a, make sure you compiled libxvidcore in ${with_xvid_tree}" >&2;}
  17704.    { (exit 1); exit 1; }; }
  17705.     fi
  17706.   else
  17707.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xvid}"
  17708.     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xvid}"
  17709.  
  17710. for ac_header in xvid.h
  17711. do
  17712. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  17713. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17714.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  17715. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17716. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17717.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17718. fi
  17719. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17720. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17721. else
  17722.   # Is the header compilable?
  17723. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  17724. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  17725. cat >conftest.$ac_ext <<_ACEOF
  17726. #line $LINENO "configure"
  17727. /* confdefs.h.  */
  17728. _ACEOF
  17729. cat confdefs.h >>conftest.$ac_ext
  17730. cat >>conftest.$ac_ext <<_ACEOF
  17731. /* end confdefs.h.  */
  17732. $ac_includes_default
  17733. #include <$ac_header>
  17734. _ACEOF
  17735. rm -f conftest.$ac_objext
  17736. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  17737.   (eval $ac_compile) 2>&5
  17738.   ac_status=$?
  17739.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17740.   (exit $ac_status); } &&
  17741.          { ac_try='test -s conftest.$ac_objext'
  17742.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17743.   (eval $ac_try) 2>&5
  17744.   ac_status=$?
  17745.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17746.   (exit $ac_status); }; }; then
  17747.   ac_header_compiler=yes
  17748. else
  17749.   echo "$as_me: failed program was:" >&5
  17750. sed 's/^/| /' conftest.$ac_ext >&5
  17751.  
  17752. ac_header_compiler=no
  17753. fi
  17754. rm -f conftest.$ac_objext conftest.$ac_ext
  17755. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  17756. echo "${ECHO_T}$ac_header_compiler" >&6
  17757.  
  17758. # Is the header present?
  17759. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  17760. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  17761. cat >conftest.$ac_ext <<_ACEOF
  17762. #line $LINENO "configure"
  17763. /* confdefs.h.  */
  17764. _ACEOF
  17765. cat confdefs.h >>conftest.$ac_ext
  17766. cat >>conftest.$ac_ext <<_ACEOF
  17767. /* end confdefs.h.  */
  17768. #include <$ac_header>
  17769. _ACEOF
  17770. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  17771.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  17772.   ac_status=$?
  17773.   grep -v '^ *+' conftest.er1 >conftest.err
  17774.   rm -f conftest.er1
  17775.   cat conftest.err >&5
  17776.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17777.   (exit $ac_status); } >/dev/null; then
  17778.   if test -s conftest.err; then
  17779.     ac_cpp_err=$ac_c_preproc_warn_flag
  17780.   else
  17781.     ac_cpp_err=
  17782.   fi
  17783. else
  17784.   ac_cpp_err=yes
  17785. fi
  17786. if test -z "$ac_cpp_err"; then
  17787.   ac_header_preproc=yes
  17788. else
  17789.   echo "$as_me: failed program was:" >&5
  17790. sed 's/^/| /' conftest.$ac_ext >&5
  17791.  
  17792.   ac_header_preproc=no
  17793. fi
  17794. rm -f conftest.err conftest.$ac_ext
  17795. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  17796. echo "${ECHO_T}$ac_header_preproc" >&6
  17797.  
  17798. # So?  What about this header?
  17799. case $ac_header_compiler:$ac_header_preproc in
  17800.   yes:no )
  17801.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  17802. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  17803.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17804. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17805.     (
  17806.       cat <<\_ASBOX
  17807. ## ------------------------------------ ##
  17808. ## Report this to bug-autoconf@gnu.org. ##
  17809. ## ------------------------------------ ##
  17810. _ASBOX
  17811.     ) |
  17812.       sed "s/^/$as_me: WARNING:     /" >&2
  17813.     ;;
  17814.   no:yes )
  17815.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  17816. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  17817.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  17818. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  17819.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  17820. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  17821.     (
  17822.       cat <<\_ASBOX
  17823. ## ------------------------------------ ##
  17824. ## Report this to bug-autoconf@gnu.org. ##
  17825. ## ------------------------------------ ##
  17826. _ASBOX
  17827.     ) |
  17828.       sed "s/^/$as_me: WARNING:     /" >&2
  17829.     ;;
  17830. esac
  17831. echo "$as_me:$LINENO: checking for $ac_header" >&5
  17832. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17833. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17834.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17835. else
  17836.   eval "$as_ac_Header=$ac_header_preproc"
  17837. fi
  17838. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17839. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17840.  
  17841. fi
  17842. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  17843.   cat >>confdefs.h <<_ACEOF
  17844. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  17845. _ACEOF
  17846.  
  17847. else
  17848.    { { echo "$as_me:$LINENO: error: Cannot find development headers for libxvidcore..." >&5
  17849. echo "$as_me: error: Cannot find development headers for libxvidcore..." >&2;}
  17850.    { (exit 1); exit 1; }; }
  17851. fi
  17852.  
  17853. done
  17854.  
  17855.     echo "$as_me:$LINENO: checking for xvid_init in -lxvidcore" >&5
  17856. echo $ECHO_N "checking for xvid_init in -lxvidcore... $ECHO_C" >&6
  17857. if test "${ac_cv_lib_xvidcore_xvid_init+set}" = set; then
  17858.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17859. else
  17860.   ac_check_lib_save_LIBS=$LIBS
  17861. LIBS="-lxvidcore  $LIBS"
  17862. cat >conftest.$ac_ext <<_ACEOF
  17863. #line $LINENO "configure"
  17864. /* confdefs.h.  */
  17865. _ACEOF
  17866. cat confdefs.h >>conftest.$ac_ext
  17867. cat >>conftest.$ac_ext <<_ACEOF
  17868. /* end confdefs.h.  */
  17869.  
  17870. /* Override any gcc2 internal prototype to avoid an error.  */
  17871. #ifdef __cplusplus
  17872. extern "C"
  17873. #endif
  17874. /* We use char because int might match the return type of a gcc2
  17875.    builtin and then its argument prototype would still apply.  */
  17876. char xvid_init ();
  17877. int
  17878. main ()
  17879. {
  17880. xvid_init ();
  17881.   ;
  17882.   return 0;
  17883. }
  17884. _ACEOF
  17885. rm -f conftest.$ac_objext conftest$ac_exeext
  17886. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  17887.   (eval $ac_link) 2>&5
  17888.   ac_status=$?
  17889.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17890.   (exit $ac_status); } &&
  17891.          { ac_try='test -s conftest$ac_exeext'
  17892.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17893.   (eval $ac_try) 2>&5
  17894.   ac_status=$?
  17895.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17896.   (exit $ac_status); }; }; then
  17897.   ac_cv_lib_xvidcore_xvid_init=yes
  17898. else
  17899.   echo "$as_me: failed program was:" >&5
  17900. sed 's/^/| /' conftest.$ac_ext >&5
  17901.  
  17902. ac_cv_lib_xvidcore_xvid_init=no
  17903. fi
  17904. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  17905. LIBS=$ac_check_lib_save_LIBS
  17906. fi
  17907. echo "$as_me:$LINENO: result: $ac_cv_lib_xvidcore_xvid_init" >&5
  17908. echo "${ECHO_T}$ac_cv_lib_xvidcore_xvid_init" >&6
  17909. if test $ac_cv_lib_xvidcore_xvid_init = yes; then
  17910.  
  17911.       PLUGINS="${PLUGINS} xvid"
  17912.       LDFLAGS_xvid="${LDFLAGS_xvid} -lxvidcore"
  17913. else
  17914.    { { echo "$as_me:$LINENO: error: Cannot find libxvidcore library..." >&5
  17915. echo "$as_me: error: Cannot find libxvidcore library..." >&2;}
  17916.    { (exit 1); exit 1; }; }
  17917. fi
  17918.  
  17919.     LDFLAGS="${LDFLAGS_save}"
  17920.     CPPFLAGS="${CPPFLAGS_save}"
  17921.   fi
  17922. fi
  17923.  
  17924.  
  17925.  
  17926.  
  17927. for ac_header in zlib.h
  17928. do
  17929. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  17930. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17931.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  17932. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  17933. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  17934.   echo $ECHO_N "(cached) $ECHO_C" >&6
  17935. fi
  17936. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  17937. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  17938. else
  17939.   # Is the header compilable?
  17940. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  17941. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  17942. cat >conftest.$ac_ext <<_ACEOF
  17943. #line $LINENO "configure"
  17944. /* confdefs.h.  */
  17945. _ACEOF
  17946. cat confdefs.h >>conftest.$ac_ext
  17947. cat >>conftest.$ac_ext <<_ACEOF
  17948. /* end confdefs.h.  */
  17949. $ac_includes_default
  17950. #include <$ac_header>
  17951. _ACEOF
  17952. rm -f conftest.$ac_objext
  17953. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  17954.   (eval $ac_compile) 2>&5
  17955.   ac_status=$?
  17956.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17957.   (exit $ac_status); } &&
  17958.          { ac_try='test -s conftest.$ac_objext'
  17959.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  17960.   (eval $ac_try) 2>&5
  17961.   ac_status=$?
  17962.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17963.   (exit $ac_status); }; }; then
  17964.   ac_header_compiler=yes
  17965. else
  17966.   echo "$as_me: failed program was:" >&5
  17967. sed 's/^/| /' conftest.$ac_ext >&5
  17968.  
  17969. ac_header_compiler=no
  17970. fi
  17971. rm -f conftest.$ac_objext conftest.$ac_ext
  17972. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  17973. echo "${ECHO_T}$ac_header_compiler" >&6
  17974.  
  17975. # Is the header present?
  17976. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  17977. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  17978. cat >conftest.$ac_ext <<_ACEOF
  17979. #line $LINENO "configure"
  17980. /* confdefs.h.  */
  17981. _ACEOF
  17982. cat confdefs.h >>conftest.$ac_ext
  17983. cat >>conftest.$ac_ext <<_ACEOF
  17984. /* end confdefs.h.  */
  17985. #include <$ac_header>
  17986. _ACEOF
  17987. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  17988.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  17989.   ac_status=$?
  17990.   grep -v '^ *+' conftest.er1 >conftest.err
  17991.   rm -f conftest.er1
  17992.   cat conftest.err >&5
  17993.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  17994.   (exit $ac_status); } >/dev/null; then
  17995.   if test -s conftest.err; then
  17996.     ac_cpp_err=$ac_c_preproc_warn_flag
  17997.   else
  17998.     ac_cpp_err=
  17999.   fi
  18000. else
  18001.   ac_cpp_err=yes
  18002. fi
  18003. if test -z "$ac_cpp_err"; then
  18004.   ac_header_preproc=yes
  18005. else
  18006.   echo "$as_me: failed program was:" >&5
  18007. sed 's/^/| /' conftest.$ac_ext >&5
  18008.  
  18009.   ac_header_preproc=no
  18010. fi
  18011. rm -f conftest.err conftest.$ac_ext
  18012. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18013. echo "${ECHO_T}$ac_header_preproc" >&6
  18014.  
  18015. # So?  What about this header?
  18016. case $ac_header_compiler:$ac_header_preproc in
  18017.   yes:no )
  18018.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18019. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18020.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18021. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18022.     (
  18023.       cat <<\_ASBOX
  18024. ## ------------------------------------ ##
  18025. ## Report this to bug-autoconf@gnu.org. ##
  18026. ## ------------------------------------ ##
  18027. _ASBOX
  18028.     ) |
  18029.       sed "s/^/$as_me: WARNING:     /" >&2
  18030.     ;;
  18031.   no:yes )
  18032.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18033. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18034.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18035. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18036.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18037. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18038.     (
  18039.       cat <<\_ASBOX
  18040. ## ------------------------------------ ##
  18041. ## Report this to bug-autoconf@gnu.org. ##
  18042. ## ------------------------------------ ##
  18043. _ASBOX
  18044.     ) |
  18045.       sed "s/^/$as_me: WARNING:     /" >&2
  18046.     ;;
  18047. esac
  18048. echo "$as_me:$LINENO: checking for $ac_header" >&5
  18049. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18050. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18051.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18052. else
  18053.   eval "$as_ac_Header=$ac_header_preproc"
  18054. fi
  18055. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18056. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18057.  
  18058. fi
  18059. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  18060.   cat >>confdefs.h <<_ACEOF
  18061. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  18062. _ACEOF
  18063.  
  18064.   LDFLAGS_mp4="${LDFLAGS_mp4} -lz"
  18065.   LDFLAGS_skins="${LDFLAGS_skins} -lz"
  18066.  
  18067. fi
  18068.  
  18069. done
  18070.  
  18071.  
  18072.  
  18073.  
  18074. for ac_header in libtar.h
  18075. do
  18076. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  18077. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18078.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  18079. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18080. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18081.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18082. fi
  18083. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18084. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18085. else
  18086.   # Is the header compilable?
  18087. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  18088. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  18089. cat >conftest.$ac_ext <<_ACEOF
  18090. #line $LINENO "configure"
  18091. /* confdefs.h.  */
  18092. _ACEOF
  18093. cat confdefs.h >>conftest.$ac_ext
  18094. cat >>conftest.$ac_ext <<_ACEOF
  18095. /* end confdefs.h.  */
  18096. $ac_includes_default
  18097. #include <$ac_header>
  18098. _ACEOF
  18099. rm -f conftest.$ac_objext
  18100. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  18101.   (eval $ac_compile) 2>&5
  18102.   ac_status=$?
  18103.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18104.   (exit $ac_status); } &&
  18105.          { ac_try='test -s conftest.$ac_objext'
  18106.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18107.   (eval $ac_try) 2>&5
  18108.   ac_status=$?
  18109.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18110.   (exit $ac_status); }; }; then
  18111.   ac_header_compiler=yes
  18112. else
  18113.   echo "$as_me: failed program was:" >&5
  18114. sed 's/^/| /' conftest.$ac_ext >&5
  18115.  
  18116. ac_header_compiler=no
  18117. fi
  18118. rm -f conftest.$ac_objext conftest.$ac_ext
  18119. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  18120. echo "${ECHO_T}$ac_header_compiler" >&6
  18121.  
  18122. # Is the header present?
  18123. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  18124. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  18125. cat >conftest.$ac_ext <<_ACEOF
  18126. #line $LINENO "configure"
  18127. /* confdefs.h.  */
  18128. _ACEOF
  18129. cat confdefs.h >>conftest.$ac_ext
  18130. cat >>conftest.$ac_ext <<_ACEOF
  18131. /* end confdefs.h.  */
  18132. #include <$ac_header>
  18133. _ACEOF
  18134. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  18135.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  18136.   ac_status=$?
  18137.   grep -v '^ *+' conftest.er1 >conftest.err
  18138.   rm -f conftest.er1
  18139.   cat conftest.err >&5
  18140.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18141.   (exit $ac_status); } >/dev/null; then
  18142.   if test -s conftest.err; then
  18143.     ac_cpp_err=$ac_c_preproc_warn_flag
  18144.   else
  18145.     ac_cpp_err=
  18146.   fi
  18147. else
  18148.   ac_cpp_err=yes
  18149. fi
  18150. if test -z "$ac_cpp_err"; then
  18151.   ac_header_preproc=yes
  18152. else
  18153.   echo "$as_me: failed program was:" >&5
  18154. sed 's/^/| /' conftest.$ac_ext >&5
  18155.  
  18156.   ac_header_preproc=no
  18157. fi
  18158. rm -f conftest.err conftest.$ac_ext
  18159. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18160. echo "${ECHO_T}$ac_header_preproc" >&6
  18161.  
  18162. # So?  What about this header?
  18163. case $ac_header_compiler:$ac_header_preproc in
  18164.   yes:no )
  18165.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18166. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18167.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18168. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18169.     (
  18170.       cat <<\_ASBOX
  18171. ## ------------------------------------ ##
  18172. ## Report this to bug-autoconf@gnu.org. ##
  18173. ## ------------------------------------ ##
  18174. _ASBOX
  18175.     ) |
  18176.       sed "s/^/$as_me: WARNING:     /" >&2
  18177.     ;;
  18178.   no:yes )
  18179.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18180. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18181.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18182. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18183.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18184. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18185.     (
  18186.       cat <<\_ASBOX
  18187. ## ------------------------------------ ##
  18188. ## Report this to bug-autoconf@gnu.org. ##
  18189. ## ------------------------------------ ##
  18190. _ASBOX
  18191.     ) |
  18192.       sed "s/^/$as_me: WARNING:     /" >&2
  18193.     ;;
  18194. esac
  18195. echo "$as_me:$LINENO: checking for $ac_header" >&5
  18196. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18197. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18198.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18199. else
  18200.   eval "$as_ac_Header=$ac_header_preproc"
  18201. fi
  18202. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18203. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18204.  
  18205. fi
  18206. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  18207.   cat >>confdefs.h <<_ACEOF
  18208. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  18209. _ACEOF
  18210.  
  18211.   LDFLAGS_skins="${LDFLAGS_skins} -ltar"
  18212.  
  18213. fi
  18214.  
  18215. done
  18216.  
  18217.  
  18218.  
  18219.  
  18220. # Check whether --enable-a52 or --disable-a52 was given.
  18221. if test "${enable_a52+set}" = set; then
  18222.   enableval="$enable_a52"
  18223.  
  18224. fi;
  18225. if test "x${enable_a52}" != "xno"
  18226. then
  18227.  
  18228. # Check whether --with-a52 or --without-a52 was given.
  18229. if test "${with_a52+set}" = set; then
  18230.   withval="$with_a52"
  18231.  
  18232. fi;
  18233.  
  18234. # Check whether --with-a52-tree or --without-a52-tree was given.
  18235. if test "${with_a52_tree+set}" = set; then
  18236.   withval="$with_a52_tree"
  18237.  
  18238. fi;
  18239.   if test "x${with_a52_tree}" != "xno" -a "x${with_a52_tree}" != "x"
  18240.   then
  18241.     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
  18242.     if test "x${real_a52_tree}" = "x"
  18243.     then
  18244.             echo "$as_me:$LINENO: result: no" >&5
  18245. echo "${ECHO_T}no" >&6
  18246.       { { echo "$as_me:$LINENO: error: ${with_a52_tree} directory doesn't exist" >&5
  18247. echo "$as_me: error: ${with_a52_tree} directory doesn't exist" >&2;}
  18248.    { (exit 1); exit 1; }; }
  18249.     fi
  18250.         echo "$as_me:$LINENO: checking for a52.h in ${real_a52_tree}/include" >&5
  18251. echo $ECHO_N "checking for a52.h in ${real_a52_tree}/include... $ECHO_C" >&6
  18252.     if test -f ${real_a52_tree}/include/a52.h
  18253.     then
  18254.       echo "$as_me:$LINENO: result: yes" >&5
  18255. echo "${ECHO_T}yes" >&6
  18256.       CPPFLAGS_a52tofloat32="${CPPFLAGS_a52tofloat32} -I${real_a52_tree}"
  18257.       LDFLAGS_a52tofloat32="${LDFLAGS_a52tofloat32} -L${real_a52_tree}/liba52/.libs"
  18258.       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
  18259.       echo "$as_me:$LINENO: checking for a52_free in -la52" >&5
  18260. echo $ECHO_N "checking for a52_free in -la52... $ECHO_C" >&6
  18261. if test "${ac_cv_lib_a52_a52_free+set}" = set; then
  18262.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18263. else
  18264.   ac_check_lib_save_LIBS=$LIBS
  18265. LIBS="-la52  $LIBS"
  18266. cat >conftest.$ac_ext <<_ACEOF
  18267. #line $LINENO "configure"
  18268. /* confdefs.h.  */
  18269. _ACEOF
  18270. cat confdefs.h >>conftest.$ac_ext
  18271. cat >>conftest.$ac_ext <<_ACEOF
  18272. /* end confdefs.h.  */
  18273.  
  18274. /* Override any gcc2 internal prototype to avoid an error.  */
  18275. #ifdef __cplusplus
  18276. extern "C"
  18277. #endif
  18278. /* We use char because int might match the return type of a gcc2
  18279.    builtin and then its argument prototype would still apply.  */
  18280. char a52_free ();
  18281. int
  18282. main ()
  18283. {
  18284. a52_free ();
  18285.   ;
  18286.   return 0;
  18287. }
  18288. _ACEOF
  18289. rm -f conftest.$ac_objext conftest$ac_exeext
  18290. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  18291.   (eval $ac_link) 2>&5
  18292.   ac_status=$?
  18293.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18294.   (exit $ac_status); } &&
  18295.          { ac_try='test -s conftest$ac_exeext'
  18296.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18297.   (eval $ac_try) 2>&5
  18298.   ac_status=$?
  18299.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18300.   (exit $ac_status); }; }; then
  18301.   ac_cv_lib_a52_a52_free=yes
  18302. else
  18303.   echo "$as_me: failed program was:" >&5
  18304. sed 's/^/| /' conftest.$ac_ext >&5
  18305.  
  18306. ac_cv_lib_a52_a52_free=no
  18307. fi
  18308. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  18309. LIBS=$ac_check_lib_save_LIBS
  18310. fi
  18311. echo "$as_me:$LINENO: result: $ac_cv_lib_a52_a52_free" >&5
  18312. echo "${ECHO_T}$ac_cv_lib_a52_a52_free" >&6
  18313. if test $ac_cv_lib_a52_a52_free = yes; then
  18314.  
  18315.         BUILTINS="${BUILTINS} a52tofloat32"
  18316.         LDFLAGS_a52tofloat32="-la52 ${LDFLAGS_a52tofloat32}"
  18317.         CPPFLAGS_a52tofloat32="${CPPFLAGS_a52tofloat32} -DUSE_A52DEC_TREE"
  18318.  
  18319. else
  18320.  
  18321.         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
  18322.         then
  18323.           { { echo "$as_me:$LINENO: error: make sure you have at least a52dec-0.7.3" >&5
  18324. echo "$as_me: error: make sure you have at least a52dec-0.7.3" >&2;}
  18325.    { (exit 1); exit 1; }; }
  18326.         else
  18327.           { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled" >&5
  18328. echo "$as_me: error: the specified tree hasn't been compiled" >&2;}
  18329.    { (exit 1); exit 1; }; }
  18330.         fi
  18331.  
  18332. fi
  18333.  
  18334.       LDFLAGS="${LDFLAGS_save}"
  18335.     else
  18336.       echo "$as_me:$LINENO: result: no" >&5
  18337. echo "${ECHO_T}no" >&6
  18338.       { { echo "$as_me:$LINENO: error: the specified tree doesn't have a52.h" >&5
  18339. echo "$as_me: error: the specified tree doesn't have a52.h" >&2;}
  18340.    { (exit 1); exit 1; }; }
  18341.     fi
  18342.   else
  18343.     if test "x${with_a52}" = "x"
  18344.     then
  18345.       LDFLAGS_test=""
  18346.       CPPFLAGS_test=""
  18347.     else
  18348.       LDFLAGS_test="-L${with_a52}/lib"
  18349.       CPPFLAGS_test="-I${with_a52}/include"
  18350.     fi
  18351.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
  18352.     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
  18353.  
  18354. for ac_header in a52dec/a52.h
  18355. do
  18356. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  18357. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18358.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  18359. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18360. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18361.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18362. fi
  18363. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18364. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18365. else
  18366.   # Is the header compilable?
  18367. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  18368. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  18369. cat >conftest.$ac_ext <<_ACEOF
  18370. #line $LINENO "configure"
  18371. /* confdefs.h.  */
  18372. _ACEOF
  18373. cat confdefs.h >>conftest.$ac_ext
  18374. cat >>conftest.$ac_ext <<_ACEOF
  18375. /* end confdefs.h.  */
  18376. $ac_includes_default
  18377. #include <$ac_header>
  18378. _ACEOF
  18379. rm -f conftest.$ac_objext
  18380. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  18381.   (eval $ac_compile) 2>&5
  18382.   ac_status=$?
  18383.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18384.   (exit $ac_status); } &&
  18385.          { ac_try='test -s conftest.$ac_objext'
  18386.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18387.   (eval $ac_try) 2>&5
  18388.   ac_status=$?
  18389.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18390.   (exit $ac_status); }; }; then
  18391.   ac_header_compiler=yes
  18392. else
  18393.   echo "$as_me: failed program was:" >&5
  18394. sed 's/^/| /' conftest.$ac_ext >&5
  18395.  
  18396. ac_header_compiler=no
  18397. fi
  18398. rm -f conftest.$ac_objext conftest.$ac_ext
  18399. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  18400. echo "${ECHO_T}$ac_header_compiler" >&6
  18401.  
  18402. # Is the header present?
  18403. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  18404. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  18405. cat >conftest.$ac_ext <<_ACEOF
  18406. #line $LINENO "configure"
  18407. /* confdefs.h.  */
  18408. _ACEOF
  18409. cat confdefs.h >>conftest.$ac_ext
  18410. cat >>conftest.$ac_ext <<_ACEOF
  18411. /* end confdefs.h.  */
  18412. #include <$ac_header>
  18413. _ACEOF
  18414. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  18415.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  18416.   ac_status=$?
  18417.   grep -v '^ *+' conftest.er1 >conftest.err
  18418.   rm -f conftest.er1
  18419.   cat conftest.err >&5
  18420.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18421.   (exit $ac_status); } >/dev/null; then
  18422.   if test -s conftest.err; then
  18423.     ac_cpp_err=$ac_c_preproc_warn_flag
  18424.   else
  18425.     ac_cpp_err=
  18426.   fi
  18427. else
  18428.   ac_cpp_err=yes
  18429. fi
  18430. if test -z "$ac_cpp_err"; then
  18431.   ac_header_preproc=yes
  18432. else
  18433.   echo "$as_me: failed program was:" >&5
  18434. sed 's/^/| /' conftest.$ac_ext >&5
  18435.  
  18436.   ac_header_preproc=no
  18437. fi
  18438. rm -f conftest.err conftest.$ac_ext
  18439. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18440. echo "${ECHO_T}$ac_header_preproc" >&6
  18441.  
  18442. # So?  What about this header?
  18443. case $ac_header_compiler:$ac_header_preproc in
  18444.   yes:no )
  18445.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18446. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18447.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18448. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18449.     (
  18450.       cat <<\_ASBOX
  18451. ## ------------------------------------ ##
  18452. ## Report this to bug-autoconf@gnu.org. ##
  18453. ## ------------------------------------ ##
  18454. _ASBOX
  18455.     ) |
  18456.       sed "s/^/$as_me: WARNING:     /" >&2
  18457.     ;;
  18458.   no:yes )
  18459.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18460. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18461.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18462. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18463.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18464. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18465.     (
  18466.       cat <<\_ASBOX
  18467. ## ------------------------------------ ##
  18468. ## Report this to bug-autoconf@gnu.org. ##
  18469. ## ------------------------------------ ##
  18470. _ASBOX
  18471.     ) |
  18472.       sed "s/^/$as_me: WARNING:     /" >&2
  18473.     ;;
  18474. esac
  18475. echo "$as_me:$LINENO: checking for $ac_header" >&5
  18476. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18477. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18478.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18479. else
  18480.   eval "$as_ac_Header=$ac_header_preproc"
  18481. fi
  18482. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18483. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18484.  
  18485. fi
  18486. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  18487.   cat >>confdefs.h <<_ACEOF
  18488. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  18489. _ACEOF
  18490.  
  18491.       echo "$as_me:$LINENO: checking for a52_free in -la52" >&5
  18492. echo $ECHO_N "checking for a52_free in -la52... $ECHO_C" >&6
  18493. if test "${ac_cv_lib_a52_a52_free+set}" = set; then
  18494.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18495. else
  18496.   ac_check_lib_save_LIBS=$LIBS
  18497. LIBS="-la52  $LIBS"
  18498. cat >conftest.$ac_ext <<_ACEOF
  18499. #line $LINENO "configure"
  18500. /* confdefs.h.  */
  18501. _ACEOF
  18502. cat confdefs.h >>conftest.$ac_ext
  18503. cat >>conftest.$ac_ext <<_ACEOF
  18504. /* end confdefs.h.  */
  18505.  
  18506. /* Override any gcc2 internal prototype to avoid an error.  */
  18507. #ifdef __cplusplus
  18508. extern "C"
  18509. #endif
  18510. /* We use char because int might match the return type of a gcc2
  18511.    builtin and then its argument prototype would still apply.  */
  18512. char a52_free ();
  18513. int
  18514. main ()
  18515. {
  18516. a52_free ();
  18517.   ;
  18518.   return 0;
  18519. }
  18520. _ACEOF
  18521. rm -f conftest.$ac_objext conftest$ac_exeext
  18522. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  18523.   (eval $ac_link) 2>&5
  18524.   ac_status=$?
  18525.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18526.   (exit $ac_status); } &&
  18527.          { ac_try='test -s conftest$ac_exeext'
  18528.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18529.   (eval $ac_try) 2>&5
  18530.   ac_status=$?
  18531.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18532.   (exit $ac_status); }; }; then
  18533.   ac_cv_lib_a52_a52_free=yes
  18534. else
  18535.   echo "$as_me: failed program was:" >&5
  18536. sed 's/^/| /' conftest.$ac_ext >&5
  18537.  
  18538. ac_cv_lib_a52_a52_free=no
  18539. fi
  18540. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  18541. LIBS=$ac_check_lib_save_LIBS
  18542. fi
  18543. echo "$as_me:$LINENO: result: $ac_cv_lib_a52_a52_free" >&5
  18544. echo "${ECHO_T}$ac_cv_lib_a52_a52_free" >&6
  18545. if test $ac_cv_lib_a52_a52_free = yes; then
  18546.  
  18547.         PLUGINS="${PLUGINS} a52tofloat32"
  18548.         LDFLAGS_a52tofloat32="${LDFLAGS_test} -la52 ${LDFLAGS_a52tofloat32}"
  18549.         CPPFLAGS_a52tofloat32="${CPPFLAGS_a52tofloat32} ${CPPFLAGS_test}"
  18550.  
  18551. else
  18552.  
  18553.         { { echo "$as_me:$LINENO: error: Could not find a52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin." >&5
  18554. echo "$as_me: error: Could not find a52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin." >&2;}
  18555.    { (exit 1); exit 1; }; }
  18556.  
  18557. fi
  18558.  
  18559.  
  18560. fi
  18561.  
  18562. done
  18563.  
  18564.     CPPFLAGS="${CPPFLAGS_save}"
  18565.     LDFLAGS="${LDFLAGS_save}"
  18566.   fi
  18567. fi
  18568.  
  18569. # Check whether --enable-dv or --disable-dv was given.
  18570. if test "${enable_dv+set}" = set; then
  18571.   enableval="$enable_dv"
  18572.  
  18573. fi;
  18574. if test "x${enable_dv}" = "xyes"
  18575. then
  18576.  
  18577. for ac_header in libdv/dv.h
  18578. do
  18579. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  18580. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18581.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  18582. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18583. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18584.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18585. fi
  18586. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18587. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18588. else
  18589.   # Is the header compilable?
  18590. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  18591. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  18592. cat >conftest.$ac_ext <<_ACEOF
  18593. #line $LINENO "configure"
  18594. /* confdefs.h.  */
  18595. _ACEOF
  18596. cat confdefs.h >>conftest.$ac_ext
  18597. cat >>conftest.$ac_ext <<_ACEOF
  18598. /* end confdefs.h.  */
  18599. $ac_includes_default
  18600. #include <$ac_header>
  18601. _ACEOF
  18602. rm -f conftest.$ac_objext
  18603. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  18604.   (eval $ac_compile) 2>&5
  18605.   ac_status=$?
  18606.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18607.   (exit $ac_status); } &&
  18608.          { ac_try='test -s conftest.$ac_objext'
  18609.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18610.   (eval $ac_try) 2>&5
  18611.   ac_status=$?
  18612.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18613.   (exit $ac_status); }; }; then
  18614.   ac_header_compiler=yes
  18615. else
  18616.   echo "$as_me: failed program was:" >&5
  18617. sed 's/^/| /' conftest.$ac_ext >&5
  18618.  
  18619. ac_header_compiler=no
  18620. fi
  18621. rm -f conftest.$ac_objext conftest.$ac_ext
  18622. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  18623. echo "${ECHO_T}$ac_header_compiler" >&6
  18624.  
  18625. # Is the header present?
  18626. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  18627. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  18628. cat >conftest.$ac_ext <<_ACEOF
  18629. #line $LINENO "configure"
  18630. /* confdefs.h.  */
  18631. _ACEOF
  18632. cat confdefs.h >>conftest.$ac_ext
  18633. cat >>conftest.$ac_ext <<_ACEOF
  18634. /* end confdefs.h.  */
  18635. #include <$ac_header>
  18636. _ACEOF
  18637. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  18638.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  18639.   ac_status=$?
  18640.   grep -v '^ *+' conftest.er1 >conftest.err
  18641.   rm -f conftest.er1
  18642.   cat conftest.err >&5
  18643.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18644.   (exit $ac_status); } >/dev/null; then
  18645.   if test -s conftest.err; then
  18646.     ac_cpp_err=$ac_c_preproc_warn_flag
  18647.   else
  18648.     ac_cpp_err=
  18649.   fi
  18650. else
  18651.   ac_cpp_err=yes
  18652. fi
  18653. if test -z "$ac_cpp_err"; then
  18654.   ac_header_preproc=yes
  18655. else
  18656.   echo "$as_me: failed program was:" >&5
  18657. sed 's/^/| /' conftest.$ac_ext >&5
  18658.  
  18659.   ac_header_preproc=no
  18660. fi
  18661. rm -f conftest.err conftest.$ac_ext
  18662. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18663. echo "${ECHO_T}$ac_header_preproc" >&6
  18664.  
  18665. # So?  What about this header?
  18666. case $ac_header_compiler:$ac_header_preproc in
  18667.   yes:no )
  18668.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18669. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18670.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18671. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18672.     (
  18673.       cat <<\_ASBOX
  18674. ## ------------------------------------ ##
  18675. ## Report this to bug-autoconf@gnu.org. ##
  18676. ## ------------------------------------ ##
  18677. _ASBOX
  18678.     ) |
  18679.       sed "s/^/$as_me: WARNING:     /" >&2
  18680.     ;;
  18681.   no:yes )
  18682.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18683. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18684.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18685. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18686.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18687. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18688.     (
  18689.       cat <<\_ASBOX
  18690. ## ------------------------------------ ##
  18691. ## Report this to bug-autoconf@gnu.org. ##
  18692. ## ------------------------------------ ##
  18693. _ASBOX
  18694.     ) |
  18695.       sed "s/^/$as_me: WARNING:     /" >&2
  18696.     ;;
  18697. esac
  18698. echo "$as_me:$LINENO: checking for $ac_header" >&5
  18699. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18700. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18701.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18702. else
  18703.   eval "$as_ac_Header=$ac_header_preproc"
  18704. fi
  18705. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18706. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18707.  
  18708. fi
  18709. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  18710.   cat >>confdefs.h <<_ACEOF
  18711. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  18712. _ACEOF
  18713.  
  18714.     PLUGINS="${PLUGINS} dv"
  18715.     LDFLAGS_dv="${LDFLAGS_dv} -ldv"
  18716.  
  18717. fi
  18718.  
  18719. done
  18720.  
  18721. fi
  18722.  
  18723. # Check whether --enable-flac or --disable-flac was given.
  18724. if test "${enable_flac+set}" = set; then
  18725.   enableval="$enable_flac"
  18726.  
  18727. fi;
  18728. if test "x${enable_flac}" = "xyes"
  18729. then
  18730.  
  18731. for ac_header in FLAC/stream_decoder.h
  18732. do
  18733. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  18734. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18735.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  18736. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18737. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18738.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18739. fi
  18740. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18741. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18742. else
  18743.   # Is the header compilable?
  18744. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  18745. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  18746. cat >conftest.$ac_ext <<_ACEOF
  18747. #line $LINENO "configure"
  18748. /* confdefs.h.  */
  18749. _ACEOF
  18750. cat confdefs.h >>conftest.$ac_ext
  18751. cat >>conftest.$ac_ext <<_ACEOF
  18752. /* end confdefs.h.  */
  18753. $ac_includes_default
  18754. #include <$ac_header>
  18755. _ACEOF
  18756. rm -f conftest.$ac_objext
  18757. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  18758.   (eval $ac_compile) 2>&5
  18759.   ac_status=$?
  18760.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18761.   (exit $ac_status); } &&
  18762.          { ac_try='test -s conftest.$ac_objext'
  18763.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18764.   (eval $ac_try) 2>&5
  18765.   ac_status=$?
  18766.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18767.   (exit $ac_status); }; }; then
  18768.   ac_header_compiler=yes
  18769. else
  18770.   echo "$as_me: failed program was:" >&5
  18771. sed 's/^/| /' conftest.$ac_ext >&5
  18772.  
  18773. ac_header_compiler=no
  18774. fi
  18775. rm -f conftest.$ac_objext conftest.$ac_ext
  18776. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  18777. echo "${ECHO_T}$ac_header_compiler" >&6
  18778.  
  18779. # Is the header present?
  18780. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  18781. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  18782. cat >conftest.$ac_ext <<_ACEOF
  18783. #line $LINENO "configure"
  18784. /* confdefs.h.  */
  18785. _ACEOF
  18786. cat confdefs.h >>conftest.$ac_ext
  18787. cat >>conftest.$ac_ext <<_ACEOF
  18788. /* end confdefs.h.  */
  18789. #include <$ac_header>
  18790. _ACEOF
  18791. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  18792.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  18793.   ac_status=$?
  18794.   grep -v '^ *+' conftest.er1 >conftest.err
  18795.   rm -f conftest.er1
  18796.   cat conftest.err >&5
  18797.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18798.   (exit $ac_status); } >/dev/null; then
  18799.   if test -s conftest.err; then
  18800.     ac_cpp_err=$ac_c_preproc_warn_flag
  18801.   else
  18802.     ac_cpp_err=
  18803.   fi
  18804. else
  18805.   ac_cpp_err=yes
  18806. fi
  18807. if test -z "$ac_cpp_err"; then
  18808.   ac_header_preproc=yes
  18809. else
  18810.   echo "$as_me: failed program was:" >&5
  18811. sed 's/^/| /' conftest.$ac_ext >&5
  18812.  
  18813.   ac_header_preproc=no
  18814. fi
  18815. rm -f conftest.err conftest.$ac_ext
  18816. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18817. echo "${ECHO_T}$ac_header_preproc" >&6
  18818.  
  18819. # So?  What about this header?
  18820. case $ac_header_compiler:$ac_header_preproc in
  18821.   yes:no )
  18822.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18823. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18824.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18825. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18826.     (
  18827.       cat <<\_ASBOX
  18828. ## ------------------------------------ ##
  18829. ## Report this to bug-autoconf@gnu.org. ##
  18830. ## ------------------------------------ ##
  18831. _ASBOX
  18832.     ) |
  18833.       sed "s/^/$as_me: WARNING:     /" >&2
  18834.     ;;
  18835.   no:yes )
  18836.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18837. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18838.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18839. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18840.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18841. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18842.     (
  18843.       cat <<\_ASBOX
  18844. ## ------------------------------------ ##
  18845. ## Report this to bug-autoconf@gnu.org. ##
  18846. ## ------------------------------------ ##
  18847. _ASBOX
  18848.     ) |
  18849.       sed "s/^/$as_me: WARNING:     /" >&2
  18850.     ;;
  18851. esac
  18852. echo "$as_me:$LINENO: checking for $ac_header" >&5
  18853. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18854. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18855.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18856. else
  18857.   eval "$as_ac_Header=$ac_header_preproc"
  18858. fi
  18859. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18860. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18861.  
  18862. fi
  18863. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  18864.   cat >>confdefs.h <<_ACEOF
  18865. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  18866. _ACEOF
  18867.  
  18868.     PLUGINS="${PLUGINS} flac flacdec"
  18869.     LDFLAGS_flacdec="${LDFLAGS_flacdec} -lFLAC"
  18870.  
  18871. fi
  18872.  
  18873. done
  18874.  
  18875. fi
  18876.  
  18877. # Check whether --enable-libmpeg2 or --disable-libmpeg2 was given.
  18878. if test "${enable_libmpeg2+set}" = set; then
  18879.   enableval="$enable_libmpeg2"
  18880.  
  18881. fi;
  18882. if test "x${enable_libmpeg2}" = "xyes"
  18883. then
  18884.  
  18885. for ac_header in mpeg2dec/mpeg2.h
  18886. do
  18887. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  18888. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18889.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  18890. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  18891. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  18892.   echo $ECHO_N "(cached) $ECHO_C" >&6
  18893. fi
  18894. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  18895. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  18896. else
  18897.   # Is the header compilable?
  18898. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  18899. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  18900. cat >conftest.$ac_ext <<_ACEOF
  18901. #line $LINENO "configure"
  18902. /* confdefs.h.  */
  18903. _ACEOF
  18904. cat confdefs.h >>conftest.$ac_ext
  18905. cat >>conftest.$ac_ext <<_ACEOF
  18906. /* end confdefs.h.  */
  18907. $ac_includes_default
  18908. #include <$ac_header>
  18909. _ACEOF
  18910. rm -f conftest.$ac_objext
  18911. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  18912.   (eval $ac_compile) 2>&5
  18913.   ac_status=$?
  18914.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18915.   (exit $ac_status); } &&
  18916.          { ac_try='test -s conftest.$ac_objext'
  18917.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  18918.   (eval $ac_try) 2>&5
  18919.   ac_status=$?
  18920.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18921.   (exit $ac_status); }; }; then
  18922.   ac_header_compiler=yes
  18923. else
  18924.   echo "$as_me: failed program was:" >&5
  18925. sed 's/^/| /' conftest.$ac_ext >&5
  18926.  
  18927. ac_header_compiler=no
  18928. fi
  18929. rm -f conftest.$ac_objext conftest.$ac_ext
  18930. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  18931. echo "${ECHO_T}$ac_header_compiler" >&6
  18932.  
  18933. # Is the header present?
  18934. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  18935. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  18936. cat >conftest.$ac_ext <<_ACEOF
  18937. #line $LINENO "configure"
  18938. /* confdefs.h.  */
  18939. _ACEOF
  18940. cat confdefs.h >>conftest.$ac_ext
  18941. cat >>conftest.$ac_ext <<_ACEOF
  18942. /* end confdefs.h.  */
  18943. #include <$ac_header>
  18944. _ACEOF
  18945. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  18946.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  18947.   ac_status=$?
  18948.   grep -v '^ *+' conftest.er1 >conftest.err
  18949.   rm -f conftest.er1
  18950.   cat conftest.err >&5
  18951.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  18952.   (exit $ac_status); } >/dev/null; then
  18953.   if test -s conftest.err; then
  18954.     ac_cpp_err=$ac_c_preproc_warn_flag
  18955.   else
  18956.     ac_cpp_err=
  18957.   fi
  18958. else
  18959.   ac_cpp_err=yes
  18960. fi
  18961. if test -z "$ac_cpp_err"; then
  18962.   ac_header_preproc=yes
  18963. else
  18964.   echo "$as_me: failed program was:" >&5
  18965. sed 's/^/| /' conftest.$ac_ext >&5
  18966.  
  18967.   ac_header_preproc=no
  18968. fi
  18969. rm -f conftest.err conftest.$ac_ext
  18970. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  18971. echo "${ECHO_T}$ac_header_preproc" >&6
  18972.  
  18973. # So?  What about this header?
  18974. case $ac_header_compiler:$ac_header_preproc in
  18975.   yes:no )
  18976.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  18977. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  18978.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18979. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18980.     (
  18981.       cat <<\_ASBOX
  18982. ## ------------------------------------ ##
  18983. ## Report this to bug-autoconf@gnu.org. ##
  18984. ## ------------------------------------ ##
  18985. _ASBOX
  18986.     ) |
  18987.       sed "s/^/$as_me: WARNING:     /" >&2
  18988.     ;;
  18989.   no:yes )
  18990.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  18991. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  18992.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  18993. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  18994.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  18995. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  18996.     (
  18997.       cat <<\_ASBOX
  18998. ## ------------------------------------ ##
  18999. ## Report this to bug-autoconf@gnu.org. ##
  19000. ## ------------------------------------ ##
  19001. _ASBOX
  19002.     ) |
  19003.       sed "s/^/$as_me: WARNING:     /" >&2
  19004.     ;;
  19005. esac
  19006. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19007. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19008. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19009.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19010. else
  19011.   eval "$as_ac_Header=$ac_header_preproc"
  19012. fi
  19013. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19014. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19015.  
  19016. fi
  19017. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19018.   cat >>confdefs.h <<_ACEOF
  19019. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19020. _ACEOF
  19021.  
  19022.     PLUGINS="${PLUGINS} libmpeg2"
  19023.     LDFLAGS_libmpeg2="${LDFLAGS_libmpeg2} -lmpeg2"
  19024.  
  19025. fi
  19026.  
  19027. done
  19028.  
  19029. fi
  19030.  
  19031. # Check whether --enable-vorbis or --disable-vorbis was given.
  19032. if test "${enable_vorbis+set}" = set; then
  19033.   enableval="$enable_vorbis"
  19034.  
  19035. fi;
  19036. if test "x${enable_vorbis}" != "xno"
  19037. then
  19038.  
  19039. for ac_header in vorbis/codec.h
  19040. do
  19041. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  19042. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19043.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  19044. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19045. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19046.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19047. fi
  19048. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19049. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19050. else
  19051.   # Is the header compilable?
  19052. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  19053. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  19054. cat >conftest.$ac_ext <<_ACEOF
  19055. #line $LINENO "configure"
  19056. /* confdefs.h.  */
  19057. _ACEOF
  19058. cat confdefs.h >>conftest.$ac_ext
  19059. cat >>conftest.$ac_ext <<_ACEOF
  19060. /* end confdefs.h.  */
  19061. $ac_includes_default
  19062. #include <$ac_header>
  19063. _ACEOF
  19064. rm -f conftest.$ac_objext
  19065. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  19066.   (eval $ac_compile) 2>&5
  19067.   ac_status=$?
  19068.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19069.   (exit $ac_status); } &&
  19070.          { ac_try='test -s conftest.$ac_objext'
  19071.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19072.   (eval $ac_try) 2>&5
  19073.   ac_status=$?
  19074.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19075.   (exit $ac_status); }; }; then
  19076.   ac_header_compiler=yes
  19077. else
  19078.   echo "$as_me: failed program was:" >&5
  19079. sed 's/^/| /' conftest.$ac_ext >&5
  19080.  
  19081. ac_header_compiler=no
  19082. fi
  19083. rm -f conftest.$ac_objext conftest.$ac_ext
  19084. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  19085. echo "${ECHO_T}$ac_header_compiler" >&6
  19086.  
  19087. # Is the header present?
  19088. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  19089. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  19090. cat >conftest.$ac_ext <<_ACEOF
  19091. #line $LINENO "configure"
  19092. /* confdefs.h.  */
  19093. _ACEOF
  19094. cat confdefs.h >>conftest.$ac_ext
  19095. cat >>conftest.$ac_ext <<_ACEOF
  19096. /* end confdefs.h.  */
  19097. #include <$ac_header>
  19098. _ACEOF
  19099. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  19100.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  19101.   ac_status=$?
  19102.   grep -v '^ *+' conftest.er1 >conftest.err
  19103.   rm -f conftest.er1
  19104.   cat conftest.err >&5
  19105.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19106.   (exit $ac_status); } >/dev/null; then
  19107.   if test -s conftest.err; then
  19108.     ac_cpp_err=$ac_c_preproc_warn_flag
  19109.   else
  19110.     ac_cpp_err=
  19111.   fi
  19112. else
  19113.   ac_cpp_err=yes
  19114. fi
  19115. if test -z "$ac_cpp_err"; then
  19116.   ac_header_preproc=yes
  19117. else
  19118.   echo "$as_me: failed program was:" >&5
  19119. sed 's/^/| /' conftest.$ac_ext >&5
  19120.  
  19121.   ac_header_preproc=no
  19122. fi
  19123. rm -f conftest.err conftest.$ac_ext
  19124. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  19125. echo "${ECHO_T}$ac_header_preproc" >&6
  19126.  
  19127. # So?  What about this header?
  19128. case $ac_header_compiler:$ac_header_preproc in
  19129.   yes:no )
  19130.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  19131. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  19132.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19133. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19134.     (
  19135.       cat <<\_ASBOX
  19136. ## ------------------------------------ ##
  19137. ## Report this to bug-autoconf@gnu.org. ##
  19138. ## ------------------------------------ ##
  19139. _ASBOX
  19140.     ) |
  19141.       sed "s/^/$as_me: WARNING:     /" >&2
  19142.     ;;
  19143.   no:yes )
  19144.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  19145. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  19146.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  19147. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  19148.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19149. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19150.     (
  19151.       cat <<\_ASBOX
  19152. ## ------------------------------------ ##
  19153. ## Report this to bug-autoconf@gnu.org. ##
  19154. ## ------------------------------------ ##
  19155. _ASBOX
  19156.     ) |
  19157.       sed "s/^/$as_me: WARNING:     /" >&2
  19158.     ;;
  19159. esac
  19160. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19161. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19162. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19163.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19164. else
  19165.   eval "$as_ac_Header=$ac_header_preproc"
  19166. fi
  19167. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19168. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19169.  
  19170. fi
  19171. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19172.   cat >>confdefs.h <<_ACEOF
  19173. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19174. _ACEOF
  19175.  
  19176.     PLUGINS="${PLUGINS} vorbis"
  19177.     LDFLAGS_vorbis="${LDFLAGS_vorbis} -lvorbis -logg"
  19178.  
  19179. fi
  19180.  
  19181. done
  19182.  
  19183. fi
  19184.  
  19185. # Check whether --enable-tremor or --disable-tremor was given.
  19186. if test "${enable_tremor+set}" = set; then
  19187.   enableval="$enable_tremor"
  19188.  
  19189. fi;
  19190. if test "x${enable_tremor}" = "xyes"
  19191. then
  19192.  
  19193. for ac_header in tremor/ivorbiscodec.h
  19194. do
  19195. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  19196. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19197.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  19198. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19199. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19200.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19201. fi
  19202. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19203. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19204. else
  19205.   # Is the header compilable?
  19206. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  19207. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  19208. cat >conftest.$ac_ext <<_ACEOF
  19209. #line $LINENO "configure"
  19210. /* confdefs.h.  */
  19211. _ACEOF
  19212. cat confdefs.h >>conftest.$ac_ext
  19213. cat >>conftest.$ac_ext <<_ACEOF
  19214. /* end confdefs.h.  */
  19215. $ac_includes_default
  19216. #include <$ac_header>
  19217. _ACEOF
  19218. rm -f conftest.$ac_objext
  19219. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  19220.   (eval $ac_compile) 2>&5
  19221.   ac_status=$?
  19222.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19223.   (exit $ac_status); } &&
  19224.          { ac_try='test -s conftest.$ac_objext'
  19225.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19226.   (eval $ac_try) 2>&5
  19227.   ac_status=$?
  19228.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19229.   (exit $ac_status); }; }; then
  19230.   ac_header_compiler=yes
  19231. else
  19232.   echo "$as_me: failed program was:" >&5
  19233. sed 's/^/| /' conftest.$ac_ext >&5
  19234.  
  19235. ac_header_compiler=no
  19236. fi
  19237. rm -f conftest.$ac_objext conftest.$ac_ext
  19238. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  19239. echo "${ECHO_T}$ac_header_compiler" >&6
  19240.  
  19241. # Is the header present?
  19242. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  19243. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  19244. cat >conftest.$ac_ext <<_ACEOF
  19245. #line $LINENO "configure"
  19246. /* confdefs.h.  */
  19247. _ACEOF
  19248. cat confdefs.h >>conftest.$ac_ext
  19249. cat >>conftest.$ac_ext <<_ACEOF
  19250. /* end confdefs.h.  */
  19251. #include <$ac_header>
  19252. _ACEOF
  19253. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  19254.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  19255.   ac_status=$?
  19256.   grep -v '^ *+' conftest.er1 >conftest.err
  19257.   rm -f conftest.er1
  19258.   cat conftest.err >&5
  19259.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19260.   (exit $ac_status); } >/dev/null; then
  19261.   if test -s conftest.err; then
  19262.     ac_cpp_err=$ac_c_preproc_warn_flag
  19263.   else
  19264.     ac_cpp_err=
  19265.   fi
  19266. else
  19267.   ac_cpp_err=yes
  19268. fi
  19269. if test -z "$ac_cpp_err"; then
  19270.   ac_header_preproc=yes
  19271. else
  19272.   echo "$as_me: failed program was:" >&5
  19273. sed 's/^/| /' conftest.$ac_ext >&5
  19274.  
  19275.   ac_header_preproc=no
  19276. fi
  19277. rm -f conftest.err conftest.$ac_ext
  19278. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  19279. echo "${ECHO_T}$ac_header_preproc" >&6
  19280.  
  19281. # So?  What about this header?
  19282. case $ac_header_compiler:$ac_header_preproc in
  19283.   yes:no )
  19284.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  19285. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  19286.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19287. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19288.     (
  19289.       cat <<\_ASBOX
  19290. ## ------------------------------------ ##
  19291. ## Report this to bug-autoconf@gnu.org. ##
  19292. ## ------------------------------------ ##
  19293. _ASBOX
  19294.     ) |
  19295.       sed "s/^/$as_me: WARNING:     /" >&2
  19296.     ;;
  19297.   no:yes )
  19298.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  19299. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  19300.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  19301. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  19302.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19303. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19304.     (
  19305.       cat <<\_ASBOX
  19306. ## ------------------------------------ ##
  19307. ## Report this to bug-autoconf@gnu.org. ##
  19308. ## ------------------------------------ ##
  19309. _ASBOX
  19310.     ) |
  19311.       sed "s/^/$as_me: WARNING:     /" >&2
  19312.     ;;
  19313. esac
  19314. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19315. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19316. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19317.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19318. else
  19319.   eval "$as_ac_Header=$ac_header_preproc"
  19320. fi
  19321. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19322. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19323.  
  19324. fi
  19325. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19326.   cat >>confdefs.h <<_ACEOF
  19327. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19328. _ACEOF
  19329.  
  19330.     PLUGINS="${PLUGINS} tremor"
  19331.     LDFLAGS_tremor="${LDFLAGS_tremor} -lvorbisidec -logg"
  19332.  
  19333. fi
  19334.  
  19335. done
  19336.  
  19337. fi
  19338.  
  19339. # Check whether --enable-tarkin or --disable-tarkin was given.
  19340. if test "${enable_tarkin+set}" = set; then
  19341.   enableval="$enable_tarkin"
  19342.  
  19343. fi;
  19344. if test "x${enable_tarkin}" = "xyes"
  19345. then
  19346.  
  19347. # Check whether --with-tarkin-tree or --without-tarkin-tree was given.
  19348. if test "${with_tarkin_tree+set}" = set; then
  19349.   withval="$with_tarkin_tree"
  19350.  
  19351. fi;
  19352.   if test "x${with_tarkin_tree}" != "x"
  19353.   then
  19354.     echo "$as_me:$LINENO: checking for tarkin.o in ${with_tarkin_tree}" >&5
  19355. echo $ECHO_N "checking for tarkin.o in ${with_tarkin_tree}... $ECHO_C" >&6
  19356.     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
  19357.     if test -f "${real_tarkin_tree}/tarkin.o"
  19358.     then
  19359.       BUILTINS="${BUILTINS} tarkin"
  19360.       CPPFLAGS_tarkin="${CPPFLAGS_tarkin} -I${real_tarkin_tree}"
  19361.       LDFLAGS_tarkin="${LDFLAGS_tarkin} ${real_tarkin_tree}/mem.o ${real_tarkin_tree}/pnm.o ${real_tarkin_tree}/wavelet.o ${real_tarkin_tree}/wavelet_xform.o ${real_tarkin_tree}/wavelet_coeff.o ${real_tarkin_tree}/yuv.o ${real_tarkin_tree}/tarkin.o ${real_tarkin_tree}/info.o -logg"
  19362.       echo "$as_me:$LINENO: result: yes" >&5
  19363. echo "${ECHO_T}yes" >&6
  19364.     else
  19365.             echo "$as_me:$LINENO: result: no" >&5
  19366. echo "${ECHO_T}no" >&6
  19367.       { { echo "$as_me:$LINENO: error: cannot find ${real_tarkin_tree}/tarkin.o,
  19368.                     make sure you compiled tarkin in ${with_tarkin_tree}" >&5
  19369. echo "$as_me: error: cannot find ${real_tarkin_tree}/tarkin.o,
  19370.                     make sure you compiled tarkin in ${with_tarkin_tree}" >&2;}
  19371.    { (exit 1); exit 1; }; }
  19372.     fi
  19373.   fi
  19374. fi
  19375.  
  19376. # Check whether --enable-theora or --disable-theora was given.
  19377. if test "${enable_theora+set}" = set; then
  19378.   enableval="$enable_theora"
  19379.  
  19380. fi;
  19381. if test "x${enable_theora}" = "xyes"
  19382. then
  19383.  
  19384. for ac_header in theora/theora.h
  19385. do
  19386. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  19387. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19388.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  19389. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19390. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19391.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19392. fi
  19393. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19394. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19395. else
  19396.   # Is the header compilable?
  19397. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  19398. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  19399. cat >conftest.$ac_ext <<_ACEOF
  19400. #line $LINENO "configure"
  19401. /* confdefs.h.  */
  19402. _ACEOF
  19403. cat confdefs.h >>conftest.$ac_ext
  19404. cat >>conftest.$ac_ext <<_ACEOF
  19405. /* end confdefs.h.  */
  19406. $ac_includes_default
  19407. #include <$ac_header>
  19408. _ACEOF
  19409. rm -f conftest.$ac_objext
  19410. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  19411.   (eval $ac_compile) 2>&5
  19412.   ac_status=$?
  19413.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19414.   (exit $ac_status); } &&
  19415.          { ac_try='test -s conftest.$ac_objext'
  19416.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19417.   (eval $ac_try) 2>&5
  19418.   ac_status=$?
  19419.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19420.   (exit $ac_status); }; }; then
  19421.   ac_header_compiler=yes
  19422. else
  19423.   echo "$as_me: failed program was:" >&5
  19424. sed 's/^/| /' conftest.$ac_ext >&5
  19425.  
  19426. ac_header_compiler=no
  19427. fi
  19428. rm -f conftest.$ac_objext conftest.$ac_ext
  19429. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  19430. echo "${ECHO_T}$ac_header_compiler" >&6
  19431.  
  19432. # Is the header present?
  19433. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  19434. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  19435. cat >conftest.$ac_ext <<_ACEOF
  19436. #line $LINENO "configure"
  19437. /* confdefs.h.  */
  19438. _ACEOF
  19439. cat confdefs.h >>conftest.$ac_ext
  19440. cat >>conftest.$ac_ext <<_ACEOF
  19441. /* end confdefs.h.  */
  19442. #include <$ac_header>
  19443. _ACEOF
  19444. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  19445.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  19446.   ac_status=$?
  19447.   grep -v '^ *+' conftest.er1 >conftest.err
  19448.   rm -f conftest.er1
  19449.   cat conftest.err >&5
  19450.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19451.   (exit $ac_status); } >/dev/null; then
  19452.   if test -s conftest.err; then
  19453.     ac_cpp_err=$ac_c_preproc_warn_flag
  19454.   else
  19455.     ac_cpp_err=
  19456.   fi
  19457. else
  19458.   ac_cpp_err=yes
  19459. fi
  19460. if test -z "$ac_cpp_err"; then
  19461.   ac_header_preproc=yes
  19462. else
  19463.   echo "$as_me: failed program was:" >&5
  19464. sed 's/^/| /' conftest.$ac_ext >&5
  19465.  
  19466.   ac_header_preproc=no
  19467. fi
  19468. rm -f conftest.err conftest.$ac_ext
  19469. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  19470. echo "${ECHO_T}$ac_header_preproc" >&6
  19471.  
  19472. # So?  What about this header?
  19473. case $ac_header_compiler:$ac_header_preproc in
  19474.   yes:no )
  19475.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  19476. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  19477.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19478. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19479.     (
  19480.       cat <<\_ASBOX
  19481. ## ------------------------------------ ##
  19482. ## Report this to bug-autoconf@gnu.org. ##
  19483. ## ------------------------------------ ##
  19484. _ASBOX
  19485.     ) |
  19486.       sed "s/^/$as_me: WARNING:     /" >&2
  19487.     ;;
  19488.   no:yes )
  19489.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  19490. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  19491.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  19492. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  19493.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19494. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19495.     (
  19496.       cat <<\_ASBOX
  19497. ## ------------------------------------ ##
  19498. ## Report this to bug-autoconf@gnu.org. ##
  19499. ## ------------------------------------ ##
  19500. _ASBOX
  19501.     ) |
  19502.       sed "s/^/$as_me: WARNING:     /" >&2
  19503.     ;;
  19504. esac
  19505. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19506. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19507. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19508.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19509. else
  19510.   eval "$as_ac_Header=$ac_header_preproc"
  19511. fi
  19512. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19513. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19514.  
  19515. fi
  19516. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19517.   cat >>confdefs.h <<_ACEOF
  19518. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19519. _ACEOF
  19520.  
  19521.     echo "$as_me:$LINENO: checking for theora_granule_time in -ltheora" >&5
  19522. echo $ECHO_N "checking for theora_granule_time in -ltheora... $ECHO_C" >&6
  19523. if test "${ac_cv_lib_theora_theora_granule_time+set}" = set; then
  19524.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19525. else
  19526.   ac_check_lib_save_LIBS=$LIBS
  19527. LIBS="-ltheora -logg $LIBS"
  19528. cat >conftest.$ac_ext <<_ACEOF
  19529. #line $LINENO "configure"
  19530. /* confdefs.h.  */
  19531. _ACEOF
  19532. cat confdefs.h >>conftest.$ac_ext
  19533. cat >>conftest.$ac_ext <<_ACEOF
  19534. /* end confdefs.h.  */
  19535.  
  19536. /* Override any gcc2 internal prototype to avoid an error.  */
  19537. #ifdef __cplusplus
  19538. extern "C"
  19539. #endif
  19540. /* We use char because int might match the return type of a gcc2
  19541.    builtin and then its argument prototype would still apply.  */
  19542. char theora_granule_time ();
  19543. int
  19544. main ()
  19545. {
  19546. theora_granule_time ();
  19547.   ;
  19548.   return 0;
  19549. }
  19550. _ACEOF
  19551. rm -f conftest.$ac_objext conftest$ac_exeext
  19552. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  19553.   (eval $ac_link) 2>&5
  19554.   ac_status=$?
  19555.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19556.   (exit $ac_status); } &&
  19557.          { ac_try='test -s conftest$ac_exeext'
  19558.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19559.   (eval $ac_try) 2>&5
  19560.   ac_status=$?
  19561.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19562.   (exit $ac_status); }; }; then
  19563.   ac_cv_lib_theora_theora_granule_time=yes
  19564. else
  19565.   echo "$as_me: failed program was:" >&5
  19566. sed 's/^/| /' conftest.$ac_ext >&5
  19567.  
  19568. ac_cv_lib_theora_theora_granule_time=no
  19569. fi
  19570. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  19571. LIBS=$ac_check_lib_save_LIBS
  19572. fi
  19573. echo "$as_me:$LINENO: result: $ac_cv_lib_theora_theora_granule_time" >&5
  19574. echo "${ECHO_T}$ac_cv_lib_theora_theora_granule_time" >&6
  19575. if test $ac_cv_lib_theora_theora_granule_time = yes; then
  19576.  
  19577.       BUILTINS="${BUILTINS} theora"
  19578.       LDFLAGS_theora="${LDFLAGS_theora} -ltheora -logg"
  19579. else
  19580.  
  19581.       { { echo "$as_me:$LINENO: error: libtheora doesn't appear to be installed on you system.
  19582. You also need to check that you have a libogg posterior to the 1.0 release." >&5
  19583. echo "$as_me: error: libtheora doesn't appear to be installed on you system.
  19584. You also need to check that you have a libogg posterior to the 1.0 release." >&2;}
  19585.    { (exit 1); exit 1; }; }
  19586. fi
  19587.  
  19588.  
  19589. fi
  19590.  
  19591. done
  19592.  
  19593. fi
  19594.  
  19595.  
  19596.  
  19597. # Check whether --with- or --without- was given.
  19598. if test "${with_+set}" = set; then
  19599.   withval="$with_"
  19600.  
  19601. fi;
  19602.  
  19603. # Check whether --enable-x11 or --disable-x11 was given.
  19604. if test "${enable_x11+set}" = set; then
  19605.   enableval="$enable_x11"
  19606.  
  19607. fi;
  19608. if test "x${enable_x11}" != "xno" &&
  19609.   (test "x${SYS}" != "xmingw32" || test "x${enable_x11}" = "xyes"); then
  19610.   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
  19611.  
  19612. for ac_header in X11/Xlib.h
  19613. do
  19614. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  19615. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19616.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  19617. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19618. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19619.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19620. fi
  19621. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19622. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19623. else
  19624.   # Is the header compilable?
  19625. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  19626. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  19627. cat >conftest.$ac_ext <<_ACEOF
  19628. #line $LINENO "configure"
  19629. /* confdefs.h.  */
  19630. _ACEOF
  19631. cat confdefs.h >>conftest.$ac_ext
  19632. cat >>conftest.$ac_ext <<_ACEOF
  19633. /* end confdefs.h.  */
  19634. $ac_includes_default
  19635. #include <$ac_header>
  19636. _ACEOF
  19637. rm -f conftest.$ac_objext
  19638. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  19639.   (eval $ac_compile) 2>&5
  19640.   ac_status=$?
  19641.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19642.   (exit $ac_status); } &&
  19643.          { ac_try='test -s conftest.$ac_objext'
  19644.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19645.   (eval $ac_try) 2>&5
  19646.   ac_status=$?
  19647.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19648.   (exit $ac_status); }; }; then
  19649.   ac_header_compiler=yes
  19650. else
  19651.   echo "$as_me: failed program was:" >&5
  19652. sed 's/^/| /' conftest.$ac_ext >&5
  19653.  
  19654. ac_header_compiler=no
  19655. fi
  19656. rm -f conftest.$ac_objext conftest.$ac_ext
  19657. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  19658. echo "${ECHO_T}$ac_header_compiler" >&6
  19659.  
  19660. # Is the header present?
  19661. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  19662. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  19663. cat >conftest.$ac_ext <<_ACEOF
  19664. #line $LINENO "configure"
  19665. /* confdefs.h.  */
  19666. _ACEOF
  19667. cat confdefs.h >>conftest.$ac_ext
  19668. cat >>conftest.$ac_ext <<_ACEOF
  19669. /* end confdefs.h.  */
  19670. #include <$ac_header>
  19671. _ACEOF
  19672. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  19673.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  19674.   ac_status=$?
  19675.   grep -v '^ *+' conftest.er1 >conftest.err
  19676.   rm -f conftest.er1
  19677.   cat conftest.err >&5
  19678.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19679.   (exit $ac_status); } >/dev/null; then
  19680.   if test -s conftest.err; then
  19681.     ac_cpp_err=$ac_c_preproc_warn_flag
  19682.   else
  19683.     ac_cpp_err=
  19684.   fi
  19685. else
  19686.   ac_cpp_err=yes
  19687. fi
  19688. if test -z "$ac_cpp_err"; then
  19689.   ac_header_preproc=yes
  19690. else
  19691.   echo "$as_me: failed program was:" >&5
  19692. sed 's/^/| /' conftest.$ac_ext >&5
  19693.  
  19694.   ac_header_preproc=no
  19695. fi
  19696. rm -f conftest.err conftest.$ac_ext
  19697. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  19698. echo "${ECHO_T}$ac_header_preproc" >&6
  19699.  
  19700. # So?  What about this header?
  19701. case $ac_header_compiler:$ac_header_preproc in
  19702.   yes:no )
  19703.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  19704. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  19705.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19706. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19707.     (
  19708.       cat <<\_ASBOX
  19709. ## ------------------------------------ ##
  19710. ## Report this to bug-autoconf@gnu.org. ##
  19711. ## ------------------------------------ ##
  19712. _ASBOX
  19713.     ) |
  19714.       sed "s/^/$as_me: WARNING:     /" >&2
  19715.     ;;
  19716.   no:yes )
  19717.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  19718. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  19719.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  19720. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  19721.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19722. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19723.     (
  19724.       cat <<\_ASBOX
  19725. ## ------------------------------------ ##
  19726. ## Report this to bug-autoconf@gnu.org. ##
  19727. ## ------------------------------------ ##
  19728. _ASBOX
  19729.     ) |
  19730.       sed "s/^/$as_me: WARNING:     /" >&2
  19731.     ;;
  19732. esac
  19733. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19734. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19735. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19736.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19737. else
  19738.   eval "$as_ac_Header=$ac_header_preproc"
  19739. fi
  19740. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19741. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19742.  
  19743. fi
  19744. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19745.   cat >>confdefs.h <<_ACEOF
  19746. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19747. _ACEOF
  19748.  
  19749.     PLUGINS="${PLUGINS} x11"
  19750.     LDFLAGS_x11="${LDFLAGS_x11} -L${x_libraries} -lX11 -lXext"
  19751.     CPPFLAGS_x11="${CPPFLAGS_x11} -I${x_includes}"
  19752.  
  19753. fi
  19754.  
  19755. done
  19756.  
  19757.   CPPFLAGS="${CPPFLAGS_save}"
  19758. fi
  19759.  
  19760. # Check whether --enable-xvideo or --disable-xvideo was given.
  19761. if test "${enable_xvideo+set}" = set; then
  19762.   enableval="$enable_xvideo"
  19763.  
  19764. fi;
  19765. if test "x${enable_xvideo}" != "xno" &&
  19766.   (test "x${SYS}" != "xmingw32" || test "x${enable_xvideo}" = "xyes"); then
  19767.   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
  19768.  
  19769. for ac_header in X11/extensions/Xv.h
  19770. do
  19771. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  19772. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19773.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  19774. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19775. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19776.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19777. fi
  19778. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19779. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19780. else
  19781.   # Is the header compilable?
  19782. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  19783. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  19784. cat >conftest.$ac_ext <<_ACEOF
  19785. #line $LINENO "configure"
  19786. /* confdefs.h.  */
  19787. _ACEOF
  19788. cat confdefs.h >>conftest.$ac_ext
  19789. cat >>conftest.$ac_ext <<_ACEOF
  19790. /* end confdefs.h.  */
  19791. $ac_includes_default
  19792. #include <$ac_header>
  19793. _ACEOF
  19794. rm -f conftest.$ac_objext
  19795. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  19796.   (eval $ac_compile) 2>&5
  19797.   ac_status=$?
  19798.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19799.   (exit $ac_status); } &&
  19800.          { ac_try='test -s conftest.$ac_objext'
  19801.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19802.   (eval $ac_try) 2>&5
  19803.   ac_status=$?
  19804.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19805.   (exit $ac_status); }; }; then
  19806.   ac_header_compiler=yes
  19807. else
  19808.   echo "$as_me: failed program was:" >&5
  19809. sed 's/^/| /' conftest.$ac_ext >&5
  19810.  
  19811. ac_header_compiler=no
  19812. fi
  19813. rm -f conftest.$ac_objext conftest.$ac_ext
  19814. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  19815. echo "${ECHO_T}$ac_header_compiler" >&6
  19816.  
  19817. # Is the header present?
  19818. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  19819. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  19820. cat >conftest.$ac_ext <<_ACEOF
  19821. #line $LINENO "configure"
  19822. /* confdefs.h.  */
  19823. _ACEOF
  19824. cat confdefs.h >>conftest.$ac_ext
  19825. cat >>conftest.$ac_ext <<_ACEOF
  19826. /* end confdefs.h.  */
  19827. #include <$ac_header>
  19828. _ACEOF
  19829. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  19830.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  19831.   ac_status=$?
  19832.   grep -v '^ *+' conftest.er1 >conftest.err
  19833.   rm -f conftest.er1
  19834.   cat conftest.err >&5
  19835.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19836.   (exit $ac_status); } >/dev/null; then
  19837.   if test -s conftest.err; then
  19838.     ac_cpp_err=$ac_c_preproc_warn_flag
  19839.   else
  19840.     ac_cpp_err=
  19841.   fi
  19842. else
  19843.   ac_cpp_err=yes
  19844. fi
  19845. if test -z "$ac_cpp_err"; then
  19846.   ac_header_preproc=yes
  19847. else
  19848.   echo "$as_me: failed program was:" >&5
  19849. sed 's/^/| /' conftest.$ac_ext >&5
  19850.  
  19851.   ac_header_preproc=no
  19852. fi
  19853. rm -f conftest.err conftest.$ac_ext
  19854. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  19855. echo "${ECHO_T}$ac_header_preproc" >&6
  19856.  
  19857. # So?  What about this header?
  19858. case $ac_header_compiler:$ac_header_preproc in
  19859.   yes:no )
  19860.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  19861. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  19862.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19863. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19864.     (
  19865.       cat <<\_ASBOX
  19866. ## ------------------------------------ ##
  19867. ## Report this to bug-autoconf@gnu.org. ##
  19868. ## ------------------------------------ ##
  19869. _ASBOX
  19870.     ) |
  19871.       sed "s/^/$as_me: WARNING:     /" >&2
  19872.     ;;
  19873.   no:yes )
  19874.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  19875. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  19876.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  19877. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  19878.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  19879. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  19880.     (
  19881.       cat <<\_ASBOX
  19882. ## ------------------------------------ ##
  19883. ## Report this to bug-autoconf@gnu.org. ##
  19884. ## ------------------------------------ ##
  19885. _ASBOX
  19886.     ) |
  19887.       sed "s/^/$as_me: WARNING:     /" >&2
  19888.     ;;
  19889. esac
  19890. echo "$as_me:$LINENO: checking for $ac_header" >&5
  19891. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  19892. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  19893.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19894. else
  19895.   eval "$as_ac_Header=$ac_header_preproc"
  19896. fi
  19897. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  19898. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  19899.  
  19900. fi
  19901. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  19902.   cat >>confdefs.h <<_ACEOF
  19903. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  19904. _ACEOF
  19905.  
  19906.     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
  19907.     echo "$as_me:$LINENO: checking for XvPutImage in -lXv_pic" >&5
  19908. echo $ECHO_N "checking for XvPutImage in -lXv_pic... $ECHO_C" >&6
  19909. if test "${ac_cv_lib_Xv_pic_XvPutImage+set}" = set; then
  19910.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19911. else
  19912.   ac_check_lib_save_LIBS=$LIBS
  19913. LIBS="-lXv_pic  $LIBS"
  19914. cat >conftest.$ac_ext <<_ACEOF
  19915. #line $LINENO "configure"
  19916. /* confdefs.h.  */
  19917. _ACEOF
  19918. cat confdefs.h >>conftest.$ac_ext
  19919. cat >>conftest.$ac_ext <<_ACEOF
  19920. /* end confdefs.h.  */
  19921.  
  19922. /* Override any gcc2 internal prototype to avoid an error.  */
  19923. #ifdef __cplusplus
  19924. extern "C"
  19925. #endif
  19926. /* We use char because int might match the return type of a gcc2
  19927.    builtin and then its argument prototype would still apply.  */
  19928. char XvPutImage ();
  19929. int
  19930. main ()
  19931. {
  19932. XvPutImage ();
  19933.   ;
  19934.   return 0;
  19935. }
  19936. _ACEOF
  19937. rm -f conftest.$ac_objext conftest$ac_exeext
  19938. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  19939.   (eval $ac_link) 2>&5
  19940.   ac_status=$?
  19941.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19942.   (exit $ac_status); } &&
  19943.          { ac_try='test -s conftest$ac_exeext'
  19944.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  19945.   (eval $ac_try) 2>&5
  19946.   ac_status=$?
  19947.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  19948.   (exit $ac_status); }; }; then
  19949.   ac_cv_lib_Xv_pic_XvPutImage=yes
  19950. else
  19951.   echo "$as_me: failed program was:" >&5
  19952. sed 's/^/| /' conftest.$ac_ext >&5
  19953.  
  19954. ac_cv_lib_Xv_pic_XvPutImage=no
  19955. fi
  19956. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  19957. LIBS=$ac_check_lib_save_LIBS
  19958. fi
  19959. echo "$as_me:$LINENO: result: $ac_cv_lib_Xv_pic_XvPutImage" >&5
  19960. echo "${ECHO_T}$ac_cv_lib_Xv_pic_XvPutImage" >&6
  19961. if test $ac_cv_lib_Xv_pic_XvPutImage = yes; then
  19962.   # We have Xv_pic, that's good, we can build an xvideo.so plugin !
  19963.       PLUGINS="${PLUGINS} xvideo"
  19964.       LDFLAGS_xvideo="${LDFLAGS_xvideo} -L${x_libraries} -lX11 -lXext -lXv_pic"
  19965.       CPPFLAGS_xvideo="${CPPFLAGS_xvideo} -I${x_includes}"
  19966. else
  19967.   echo "$as_me:$LINENO: checking for XvPutImage in -lXv" >&5
  19968. echo $ECHO_N "checking for XvPutImage in -lXv... $ECHO_C" >&6
  19969. if test "${ac_cv_lib_Xv_XvPutImage+set}" = set; then
  19970.   echo $ECHO_N "(cached) $ECHO_C" >&6
  19971. else
  19972.   ac_check_lib_save_LIBS=$LIBS
  19973. LIBS="-lXv  $LIBS"
  19974. cat >conftest.$ac_ext <<_ACEOF
  19975. #line $LINENO "configure"
  19976. /* confdefs.h.  */
  19977. _ACEOF
  19978. cat confdefs.h >>conftest.$ac_ext
  19979. cat >>conftest.$ac_ext <<_ACEOF
  19980. /* end confdefs.h.  */
  19981.  
  19982. /* Override any gcc2 internal prototype to avoid an error.  */
  19983. #ifdef __cplusplus
  19984. extern "C"
  19985. #endif
  19986. /* We use char because int might match the return type of a gcc2
  19987.    builtin and then its argument prototype would still apply.  */
  19988. char XvPutImage ();
  19989. int
  19990. main ()
  19991. {
  19992. XvPutImage ();
  19993.   ;
  19994.   return 0;
  19995. }
  19996. _ACEOF
  19997. rm -f conftest.$ac_objext conftest$ac_exeext
  19998. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  19999.   (eval $ac_link) 2>&5
  20000.   ac_status=$?
  20001.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20002.   (exit $ac_status); } &&
  20003.          { ac_try='test -s conftest$ac_exeext'
  20004.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  20005.   (eval $ac_try) 2>&5
  20006.   ac_status=$?
  20007.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20008.   (exit $ac_status); }; }; then
  20009.   ac_cv_lib_Xv_XvPutImage=yes
  20010. else
  20011.   echo "$as_me: failed program was:" >&5
  20012. sed 's/^/| /' conftest.$ac_ext >&5
  20013.  
  20014. ac_cv_lib_Xv_XvPutImage=no
  20015. fi
  20016. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  20017. LIBS=$ac_check_lib_save_LIBS
  20018. fi
  20019. echo "$as_me:$LINENO: result: $ac_cv_lib_Xv_XvPutImage" >&5
  20020. echo "${ECHO_T}$ac_cv_lib_Xv_XvPutImage" >&6
  20021. if test $ac_cv_lib_Xv_XvPutImage = yes; then
  20022.   # We don't have Xv_pic, but we have Xv, let's make xvideo.a as builtin
  20023.         PLUGINS="${PLUGINS} xvideo"
  20024.         LDFLAGS_xvideo="${LDFLAGS_xvideo} -L${x_libraries} -lX11 -lXext -lXv"
  20025.         CPPFLAGS_xvideo="${CPPFLAGS_xvideo} -I${x_includes}"
  20026. else
  20027.   # Otherwise... well, do nothing.
  20028.         :
  20029.  
  20030. fi
  20031.  
  20032.  
  20033. fi
  20034.  
  20035.     CFLAGS="${CFLAGS_save}"
  20036.  
  20037.   CPPFLAGS="${CPPFLAGS_save}"
  20038. fi
  20039.  
  20040. done
  20041.  
  20042. fi
  20043.  
  20044. # Check whether --enable-sdl or --disable-sdl was given.
  20045. if test "${enable_sdl+set}" = set; then
  20046.   enableval="$enable_sdl"
  20047.  
  20048. fi;
  20049. if test "x${enable_sdl}" != "xno"
  20050. then
  20051.   SDL_PATH="${PATH}"
  20052.  
  20053. # Check whether --with-sdl-config-path or --without-sdl-config-path was given.
  20054. if test "${with_sdl_config_path+set}" = set; then
  20055.   withval="$with_sdl_config_path"
  20056.    if test "x${with_sdl_config_path}" != "xno"
  20057.       then
  20058.         SDL_PATH="${with_sdl_config_path}:${PATH}"
  20059.       fi
  20060. fi;
  20061.   # Extract the first word of "sdl12-config", so it can be a program name with args.
  20062. set dummy sdl12-config; ac_word=$2
  20063. echo "$as_me:$LINENO: checking for $ac_word" >&5
  20064. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  20065. if test "${ac_cv_path_SDL12_CONFIG+set}" = set; then
  20066.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20067. else
  20068.   case $SDL12_CONFIG in
  20069.   [\\/]* | ?:[\\/]*)
  20070.   ac_cv_path_SDL12_CONFIG="$SDL12_CONFIG" # Let the user override the test with a path.
  20071.   ;;
  20072.   *)
  20073.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  20074. for as_dir in ${SDL_PATH}
  20075. do
  20076.   IFS=$as_save_IFS
  20077.   test -z "$as_dir" && as_dir=.
  20078.   for ac_exec_ext in '' $ac_executable_extensions; do
  20079.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  20080.     ac_cv_path_SDL12_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  20081.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  20082.     break 2
  20083.   fi
  20084. done
  20085. done
  20086.  
  20087.   test -z "$ac_cv_path_SDL12_CONFIG" && ac_cv_path_SDL12_CONFIG="no"
  20088.   ;;
  20089. esac
  20090. fi
  20091. SDL12_CONFIG=$ac_cv_path_SDL12_CONFIG
  20092.  
  20093. if test -n "$SDL12_CONFIG"; then
  20094.   echo "$as_me:$LINENO: result: $SDL12_CONFIG" >&5
  20095. echo "${ECHO_T}$SDL12_CONFIG" >&6
  20096. else
  20097.   echo "$as_me:$LINENO: result: no" >&5
  20098. echo "${ECHO_T}no" >&6
  20099. fi
  20100.  
  20101.   SDL_CONFIG="${SDL12_CONFIG}"
  20102.   SDL_HEADER="SDL12/SDL.h"
  20103.   if test "x${SDL_CONFIG}" = "xno"
  20104.   then
  20105.     # Extract the first word of "sdl11-config", so it can be a program name with args.
  20106. set dummy sdl11-config; ac_word=$2
  20107. echo "$as_me:$LINENO: checking for $ac_word" >&5
  20108. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  20109. if test "${ac_cv_path_SDL11_CONFIG+set}" = set; then
  20110.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20111. else
  20112.   case $SDL11_CONFIG in
  20113.   [\\/]* | ?:[\\/]*)
  20114.   ac_cv_path_SDL11_CONFIG="$SDL11_CONFIG" # Let the user override the test with a path.
  20115.   ;;
  20116.   *)
  20117.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  20118. for as_dir in ${SDL_PATH}
  20119. do
  20120.   IFS=$as_save_IFS
  20121.   test -z "$as_dir" && as_dir=.
  20122.   for ac_exec_ext in '' $ac_executable_extensions; do
  20123.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  20124.     ac_cv_path_SDL11_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  20125.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  20126.     break 2
  20127.   fi
  20128. done
  20129. done
  20130.  
  20131.   test -z "$ac_cv_path_SDL11_CONFIG" && ac_cv_path_SDL11_CONFIG="no"
  20132.   ;;
  20133. esac
  20134. fi
  20135. SDL11_CONFIG=$ac_cv_path_SDL11_CONFIG
  20136.  
  20137. if test -n "$SDL11_CONFIG"; then
  20138.   echo "$as_me:$LINENO: result: $SDL11_CONFIG" >&5
  20139. echo "${ECHO_T}$SDL11_CONFIG" >&6
  20140. else
  20141.   echo "$as_me:$LINENO: result: no" >&5
  20142. echo "${ECHO_T}no" >&6
  20143. fi
  20144.  
  20145.     SDL_CONFIG=${SDL11_CONFIG}
  20146.     SDL_HEADER="SDL11/SDL.h"
  20147.   fi
  20148.   if test "x${SDL_CONFIG}" = "xno"
  20149.   then
  20150.     # Extract the first word of "sdl-config", so it can be a program name with args.
  20151. set dummy sdl-config; ac_word=$2
  20152. echo "$as_me:$LINENO: checking for $ac_word" >&5
  20153. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  20154. if test "${ac_cv_path_SDL_CONFIG+set}" = set; then
  20155.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20156. else
  20157.   case $SDL_CONFIG in
  20158.   [\\/]* | ?:[\\/]*)
  20159.   ac_cv_path_SDL_CONFIG="$SDL_CONFIG" # Let the user override the test with a path.
  20160.   ;;
  20161.   *)
  20162.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  20163. for as_dir in ${SDL_PATH}
  20164. do
  20165.   IFS=$as_save_IFS
  20166.   test -z "$as_dir" && as_dir=.
  20167.   for ac_exec_ext in '' $ac_executable_extensions; do
  20168.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  20169.     ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  20170.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  20171.     break 2
  20172.   fi
  20173. done
  20174. done
  20175.  
  20176.   test -z "$ac_cv_path_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no"
  20177.   ;;
  20178. esac
  20179. fi
  20180. SDL_CONFIG=$ac_cv_path_SDL_CONFIG
  20181.  
  20182. if test -n "$SDL_CONFIG"; then
  20183.   echo "$as_me:$LINENO: result: $SDL_CONFIG" >&5
  20184. echo "${ECHO_T}$SDL_CONFIG" >&6
  20185. else
  20186.   echo "$as_me:$LINENO: result: no" >&5
  20187. echo "${ECHO_T}no" >&6
  20188. fi
  20189.  
  20190.     SDL_HEADER="SDL/SDL.h"
  20191.   fi
  20192.   # check for cross-compiling
  20193.   SDL_PREFIX=
  20194.  
  20195. # Check whether --with-sdl-prefix or --without-sdl-prefix was given.
  20196. if test "${with_sdl_prefix+set}" = set; then
  20197.   withval="$with_sdl_prefix"
  20198.  
  20199. fi;
  20200.   if test "x${with_sdl_prefix}" != "xno" -a "x${with_sdl_prefix}" != "x"
  20201.   then
  20202.     SDL_PREFIX="--prefix=${with_sdl_prefix}"
  20203.   fi
  20204.   if test "x${SDL_CONFIG}" != "xno"
  20205.   then
  20206.     PLUGINS="${PLUGINS} vout_sdl aout_sdl"
  20207.     CFLAGS_vout_sdl="${CFLAGS_vout_sdl} `${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`"
  20208.     LDFLAGS_vout_sdl="${LDFLAGS_vout_sdl} `${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`"
  20209.     CFLAGS_aout_sdl="${CFLAGS_aout_sdl} `${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`"
  20210.     LDFLAGS_aout_sdl="${LDFLAGS_aout_sdl} `${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`"
  20211.     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
  20212.  
  20213. for ac_header in ${SDL_HEADER}
  20214. do
  20215. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  20216. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20217.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  20218. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20219. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20220.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20221. fi
  20222. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20223. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20224. else
  20225.   # Is the header compilable?
  20226. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  20227. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  20228. cat >conftest.$ac_ext <<_ACEOF
  20229. #line $LINENO "configure"
  20230. /* confdefs.h.  */
  20231. _ACEOF
  20232. cat confdefs.h >>conftest.$ac_ext
  20233. cat >>conftest.$ac_ext <<_ACEOF
  20234. /* end confdefs.h.  */
  20235. $ac_includes_default
  20236. #include <$ac_header>
  20237. _ACEOF
  20238. rm -f conftest.$ac_objext
  20239. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  20240.   (eval $ac_compile) 2>&5
  20241.   ac_status=$?
  20242.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20243.   (exit $ac_status); } &&
  20244.          { ac_try='test -s conftest.$ac_objext'
  20245.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  20246.   (eval $ac_try) 2>&5
  20247.   ac_status=$?
  20248.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20249.   (exit $ac_status); }; }; then
  20250.   ac_header_compiler=yes
  20251. else
  20252.   echo "$as_me: failed program was:" >&5
  20253. sed 's/^/| /' conftest.$ac_ext >&5
  20254.  
  20255. ac_header_compiler=no
  20256. fi
  20257. rm -f conftest.$ac_objext conftest.$ac_ext
  20258. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  20259. echo "${ECHO_T}$ac_header_compiler" >&6
  20260.  
  20261. # Is the header present?
  20262. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  20263. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  20264. cat >conftest.$ac_ext <<_ACEOF
  20265. #line $LINENO "configure"
  20266. /* confdefs.h.  */
  20267. _ACEOF
  20268. cat confdefs.h >>conftest.$ac_ext
  20269. cat >>conftest.$ac_ext <<_ACEOF
  20270. /* end confdefs.h.  */
  20271. #include <$ac_header>
  20272. _ACEOF
  20273. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  20274.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  20275.   ac_status=$?
  20276.   grep -v '^ *+' conftest.er1 >conftest.err
  20277.   rm -f conftest.er1
  20278.   cat conftest.err >&5
  20279.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20280.   (exit $ac_status); } >/dev/null; then
  20281.   if test -s conftest.err; then
  20282.     ac_cpp_err=$ac_c_preproc_warn_flag
  20283.   else
  20284.     ac_cpp_err=
  20285.   fi
  20286. else
  20287.   ac_cpp_err=yes
  20288. fi
  20289. if test -z "$ac_cpp_err"; then
  20290.   ac_header_preproc=yes
  20291. else
  20292.   echo "$as_me: failed program was:" >&5
  20293. sed 's/^/| /' conftest.$ac_ext >&5
  20294.  
  20295.   ac_header_preproc=no
  20296. fi
  20297. rm -f conftest.err conftest.$ac_ext
  20298. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  20299. echo "${ECHO_T}$ac_header_preproc" >&6
  20300.  
  20301. # So?  What about this header?
  20302. case $ac_header_compiler:$ac_header_preproc in
  20303.   yes:no )
  20304.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  20305. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  20306.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20307. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20308.     (
  20309.       cat <<\_ASBOX
  20310. ## ------------------------------------ ##
  20311. ## Report this to bug-autoconf@gnu.org. ##
  20312. ## ------------------------------------ ##
  20313. _ASBOX
  20314.     ) |
  20315.       sed "s/^/$as_me: WARNING:     /" >&2
  20316.     ;;
  20317.   no:yes )
  20318.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  20319. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  20320.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  20321. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  20322.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20323. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20324.     (
  20325.       cat <<\_ASBOX
  20326. ## ------------------------------------ ##
  20327. ## Report this to bug-autoconf@gnu.org. ##
  20328. ## ------------------------------------ ##
  20329. _ASBOX
  20330.     ) |
  20331.       sed "s/^/$as_me: WARNING:     /" >&2
  20332.     ;;
  20333. esac
  20334. echo "$as_me:$LINENO: checking for $ac_header" >&5
  20335. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20336. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20337.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20338. else
  20339.   eval "$as_ac_Header=$ac_header_preproc"
  20340. fi
  20341. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20342. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20343.  
  20344. fi
  20345. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  20346.   cat >>confdefs.h <<_ACEOF
  20347. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  20348. _ACEOF
  20349.  
  20350. cat >>confdefs.h <<_ACEOF
  20351. #define SDL_INCLUDE_FILE <${SDL_HEADER}>
  20352. _ACEOF
  20353.  
  20354. else
  20355.  
  20356. for ac_header in SDL.h
  20357. do
  20358. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  20359. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20360.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  20361. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20362. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20363.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20364. fi
  20365. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20366. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20367. else
  20368.   # Is the header compilable?
  20369. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  20370. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  20371. cat >conftest.$ac_ext <<_ACEOF
  20372. #line $LINENO "configure"
  20373. /* confdefs.h.  */
  20374. _ACEOF
  20375. cat confdefs.h >>conftest.$ac_ext
  20376. cat >>conftest.$ac_ext <<_ACEOF
  20377. /* end confdefs.h.  */
  20378. $ac_includes_default
  20379. #include <$ac_header>
  20380. _ACEOF
  20381. rm -f conftest.$ac_objext
  20382. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  20383.   (eval $ac_compile) 2>&5
  20384.   ac_status=$?
  20385.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20386.   (exit $ac_status); } &&
  20387.          { ac_try='test -s conftest.$ac_objext'
  20388.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  20389.   (eval $ac_try) 2>&5
  20390.   ac_status=$?
  20391.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20392.   (exit $ac_status); }; }; then
  20393.   ac_header_compiler=yes
  20394. else
  20395.   echo "$as_me: failed program was:" >&5
  20396. sed 's/^/| /' conftest.$ac_ext >&5
  20397.  
  20398. ac_header_compiler=no
  20399. fi
  20400. rm -f conftest.$ac_objext conftest.$ac_ext
  20401. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  20402. echo "${ECHO_T}$ac_header_compiler" >&6
  20403.  
  20404. # Is the header present?
  20405. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  20406. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  20407. cat >conftest.$ac_ext <<_ACEOF
  20408. #line $LINENO "configure"
  20409. /* confdefs.h.  */
  20410. _ACEOF
  20411. cat confdefs.h >>conftest.$ac_ext
  20412. cat >>conftest.$ac_ext <<_ACEOF
  20413. /* end confdefs.h.  */
  20414. #include <$ac_header>
  20415. _ACEOF
  20416. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  20417.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  20418.   ac_status=$?
  20419.   grep -v '^ *+' conftest.er1 >conftest.err
  20420.   rm -f conftest.er1
  20421.   cat conftest.err >&5
  20422.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20423.   (exit $ac_status); } >/dev/null; then
  20424.   if test -s conftest.err; then
  20425.     ac_cpp_err=$ac_c_preproc_warn_flag
  20426.   else
  20427.     ac_cpp_err=
  20428.   fi
  20429. else
  20430.   ac_cpp_err=yes
  20431. fi
  20432. if test -z "$ac_cpp_err"; then
  20433.   ac_header_preproc=yes
  20434. else
  20435.   echo "$as_me: failed program was:" >&5
  20436. sed 's/^/| /' conftest.$ac_ext >&5
  20437.  
  20438.   ac_header_preproc=no
  20439. fi
  20440. rm -f conftest.err conftest.$ac_ext
  20441. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  20442. echo "${ECHO_T}$ac_header_preproc" >&6
  20443.  
  20444. # So?  What about this header?
  20445. case $ac_header_compiler:$ac_header_preproc in
  20446.   yes:no )
  20447.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  20448. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  20449.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20450. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20451.     (
  20452.       cat <<\_ASBOX
  20453. ## ------------------------------------ ##
  20454. ## Report this to bug-autoconf@gnu.org. ##
  20455. ## ------------------------------------ ##
  20456. _ASBOX
  20457.     ) |
  20458.       sed "s/^/$as_me: WARNING:     /" >&2
  20459.     ;;
  20460.   no:yes )
  20461.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  20462. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  20463.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  20464. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  20465.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20466. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20467.     (
  20468.       cat <<\_ASBOX
  20469. ## ------------------------------------ ##
  20470. ## Report this to bug-autoconf@gnu.org. ##
  20471. ## ------------------------------------ ##
  20472. _ASBOX
  20473.     ) |
  20474.       sed "s/^/$as_me: WARNING:     /" >&2
  20475.     ;;
  20476. esac
  20477. echo "$as_me:$LINENO: checking for $ac_header" >&5
  20478. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20479. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20480.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20481. else
  20482.   eval "$as_ac_Header=$ac_header_preproc"
  20483. fi
  20484. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20485. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20486.  
  20487. fi
  20488. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  20489.   cat >>confdefs.h <<_ACEOF
  20490. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  20491. _ACEOF
  20492.  
  20493. cat >>confdefs.h <<\_ACEOF
  20494. #define SDL_INCLUDE_FILE <SDL.h>
  20495. _ACEOF
  20496.  
  20497. else
  20498.    { { echo "$as_me:$LINENO: error: The development package for SDL is not installed.
  20499. Please install it and try again. Alternatively you can also configure with
  20500. --disable-sdl." >&5
  20501. echo "$as_me: error: The development package for SDL is not installed.
  20502. Please install it and try again. Alternatively you can also configure with
  20503. --disable-sdl." >&2;}
  20504.    { (exit 1); exit 1; }; }
  20505.  
  20506. fi
  20507.  
  20508. done
  20509.  
  20510. fi
  20511.  
  20512. done
  20513.  
  20514.     CPPFLAGS="${CPPFLAGS_save}"
  20515.     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
  20516.     then
  20517.       { { echo "$as_me:$LINENO: error: The development package for SDL is not installed.
  20518. Please install it and try again. Alternatively you can also configure with
  20519. --disable-sdl." >&5
  20520. echo "$as_me: error: The development package for SDL is not installed.
  20521. Please install it and try again. Alternatively you can also configure with
  20522. --disable-sdl." >&2;}
  20523.    { (exit 1); exit 1; }; }
  20524.     fi
  20525.   elif test "x${enable_sdl}" =  "xyes"
  20526.   then
  20527.     { { echo "$as_me:$LINENO: error: I couldn't find the SDL package. You can download libSDL
  20528. from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
  20529.     " >&5
  20530. echo "$as_me: error: I couldn't find the SDL package. You can download libSDL
  20531. from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
  20532.     " >&2;}
  20533.    { (exit 1); exit 1; }; }
  20534.   fi
  20535. fi
  20536.  
  20537. # Check whether --enable-freetype or --disable-freetype was given.
  20538. if test "${enable_freetype+set}" = set; then
  20539.   enableval="$enable_freetype"
  20540.  
  20541. fi;
  20542. if test "x${enable_freetype}" != "xno"
  20543. then
  20544.   FREETYPE_PATH="${PATH}"
  20545.  
  20546. # Check whether --with-freetype-config-path or --without-freetype-config-path was given.
  20547. if test "${with_freetype_config_path+set}" = set; then
  20548.   withval="$with_freetype_config_path"
  20549.    if test "x${with_freetype_config_path}" != "xno"
  20550.       then
  20551.         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
  20552.       fi
  20553. fi;
  20554.   # Extract the first word of "freetype-config", so it can be a program name with args.
  20555. set dummy freetype-config; ac_word=$2
  20556. echo "$as_me:$LINENO: checking for $ac_word" >&5
  20557. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  20558. if test "${ac_cv_path_FREETYPE_CONFIG+set}" = set; then
  20559.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20560. else
  20561.   case $FREETYPE_CONFIG in
  20562.   [\\/]* | ?:[\\/]*)
  20563.   ac_cv_path_FREETYPE_CONFIG="$FREETYPE_CONFIG" # Let the user override the test with a path.
  20564.   ;;
  20565.   *)
  20566.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  20567. for as_dir in ${FREETYPE_PATH}
  20568. do
  20569.   IFS=$as_save_IFS
  20570.   test -z "$as_dir" && as_dir=.
  20571.   for ac_exec_ext in '' $ac_executable_extensions; do
  20572.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  20573.     ac_cv_path_FREETYPE_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  20574.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  20575.     break 2
  20576.   fi
  20577. done
  20578. done
  20579.  
  20580.   test -z "$ac_cv_path_FREETYPE_CONFIG" && ac_cv_path_FREETYPE_CONFIG="no"
  20581.   ;;
  20582. esac
  20583. fi
  20584. FREETYPE_CONFIG=$ac_cv_path_FREETYPE_CONFIG
  20585.  
  20586. if test -n "$FREETYPE_CONFIG"; then
  20587.   echo "$as_me:$LINENO: result: $FREETYPE_CONFIG" >&5
  20588. echo "${ECHO_T}$FREETYPE_CONFIG" >&6
  20589. else
  20590.   echo "$as_me:$LINENO: result: no" >&5
  20591. echo "${ECHO_T}no" >&6
  20592. fi
  20593.  
  20594.  
  20595.   if test "x${FREETYPE_CONFIG}" != "xno" -a "x${have_xosd}" = "xtrue"
  20596.   then
  20597.     PLUGINS="${PLUGINS} osdtext"
  20598.     CFLAGS_osdtext="${CFLAGS_osdtext} `${FREETYPE_CONFIG} --cflags`"
  20599.     LDFLAGS_osdtext="${LDFLAGS_osdtext} `${FREETYPE_CONFIG} --libs`"
  20600.     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_freetype}"
  20601.   elif test "x${enable_freetype}" =  "xyes"
  20602.   then
  20603.     { { echo "$as_me:$LINENO: error: I couldn't find the freetype package. You can download libfreetype2
  20604. from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
  20605.     " >&5
  20606. echo "$as_me: error: I couldn't find the freetype package. You can download libfreetype2
  20607. from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
  20608.     " >&2;}
  20609.    { (exit 1); exit 1; }; }
  20610.   fi
  20611. fi
  20612.  
  20613. # Check whether --enable-qte or --disable-qte was given.
  20614. if test "${enable_qte+set}" = set; then
  20615.   enableval="$enable_qte"
  20616.  
  20617. fi;
  20618. if test "x${enable_qte}" = "xyes"
  20619. then
  20620.  
  20621. # Check whether --with-qte or --without-qte was given.
  20622. if test "${with_qte+set}" = set; then
  20623.   withval="$with_qte"
  20624.  
  20625. fi;
  20626.   if test "x${with_qte}" != "xno" -a "x${with_qte}" != "x"
  20627.   then
  20628.     LDFLAGS_qte="${LDFLAGS_qte} -L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte"
  20629.     CPPFLAGS_qte="${CPPFLAGS_qte} -I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti"
  20630.   else
  20631.     LDFLAGS_qte="${LDFLAGS_qte} -L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte"
  20632.     CPPFLAGS_qte="${CPPFLAGS_qte} -I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti"
  20633.   fi
  20634.   PLUGINS="${PLUGINS} qte"
  20635.   NEED_QTE_MAIN=yes
  20636.   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_qte}"
  20637.  
  20638.  
  20639. for ac_header in qt.h jpeglib.h
  20640. do
  20641. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  20642. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20643.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  20644. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20645. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20646.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20647. fi
  20648. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20649. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20650. else
  20651.   # Is the header compilable?
  20652. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  20653. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  20654. cat >conftest.$ac_ext <<_ACEOF
  20655. #line $LINENO "configure"
  20656. /* confdefs.h.  */
  20657. _ACEOF
  20658. cat confdefs.h >>conftest.$ac_ext
  20659. cat >>conftest.$ac_ext <<_ACEOF
  20660. /* end confdefs.h.  */
  20661. $ac_includes_default
  20662. #include <$ac_header>
  20663. _ACEOF
  20664. rm -f conftest.$ac_objext
  20665. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  20666.   (eval $ac_compile) 2>&5
  20667.   ac_status=$?
  20668.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20669.   (exit $ac_status); } &&
  20670.          { ac_try='test -s conftest.$ac_objext'
  20671.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  20672.   (eval $ac_try) 2>&5
  20673.   ac_status=$?
  20674.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20675.   (exit $ac_status); }; }; then
  20676.   ac_header_compiler=yes
  20677. else
  20678.   echo "$as_me: failed program was:" >&5
  20679. sed 's/^/| /' conftest.$ac_ext >&5
  20680.  
  20681. ac_header_compiler=no
  20682. fi
  20683. rm -f conftest.$ac_objext conftest.$ac_ext
  20684. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  20685. echo "${ECHO_T}$ac_header_compiler" >&6
  20686.  
  20687. # Is the header present?
  20688. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  20689. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  20690. cat >conftest.$ac_ext <<_ACEOF
  20691. #line $LINENO "configure"
  20692. /* confdefs.h.  */
  20693. _ACEOF
  20694. cat confdefs.h >>conftest.$ac_ext
  20695. cat >>conftest.$ac_ext <<_ACEOF
  20696. /* end confdefs.h.  */
  20697. #include <$ac_header>
  20698. _ACEOF
  20699. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  20700.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  20701.   ac_status=$?
  20702.   grep -v '^ *+' conftest.er1 >conftest.err
  20703.   rm -f conftest.er1
  20704.   cat conftest.err >&5
  20705.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20706.   (exit $ac_status); } >/dev/null; then
  20707.   if test -s conftest.err; then
  20708.     ac_cpp_err=$ac_c_preproc_warn_flag
  20709.   else
  20710.     ac_cpp_err=
  20711.   fi
  20712. else
  20713.   ac_cpp_err=yes
  20714. fi
  20715. if test -z "$ac_cpp_err"; then
  20716.   ac_header_preproc=yes
  20717. else
  20718.   echo "$as_me: failed program was:" >&5
  20719. sed 's/^/| /' conftest.$ac_ext >&5
  20720.  
  20721.   ac_header_preproc=no
  20722. fi
  20723. rm -f conftest.err conftest.$ac_ext
  20724. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  20725. echo "${ECHO_T}$ac_header_preproc" >&6
  20726.  
  20727. # So?  What about this header?
  20728. case $ac_header_compiler:$ac_header_preproc in
  20729.   yes:no )
  20730.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  20731. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  20732.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20733. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20734.     (
  20735.       cat <<\_ASBOX
  20736. ## ------------------------------------ ##
  20737. ## Report this to bug-autoconf@gnu.org. ##
  20738. ## ------------------------------------ ##
  20739. _ASBOX
  20740.     ) |
  20741.       sed "s/^/$as_me: WARNING:     /" >&2
  20742.     ;;
  20743.   no:yes )
  20744.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  20745. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  20746.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  20747. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  20748.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20749. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20750.     (
  20751.       cat <<\_ASBOX
  20752. ## ------------------------------------ ##
  20753. ## Report this to bug-autoconf@gnu.org. ##
  20754. ## ------------------------------------ ##
  20755. _ASBOX
  20756.     ) |
  20757.       sed "s/^/$as_me: WARNING:     /" >&2
  20758.     ;;
  20759. esac
  20760. echo "$as_me:$LINENO: checking for $ac_header" >&5
  20761. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20762. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20763.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20764. else
  20765.   eval "$as_ac_Header=$ac_header_preproc"
  20766. fi
  20767. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20768. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20769.  
  20770. fi
  20771. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  20772.   cat >>confdefs.h <<_ACEOF
  20773. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  20774. _ACEOF
  20775.  
  20776. else
  20777.  
  20778.     { { echo "$as_me:$LINENO: error: echo \"Cannot find QT Embedded development headers.\"" >&5
  20779. echo "$as_me: error: echo \"Cannot find QT Embedded development headers.\"" >&2;}
  20780.    { (exit 1); exit 1; }; }
  20781.  
  20782. fi
  20783.  
  20784. done
  20785.  
  20786.   CPPFLAGS="${CPPFLAGS_save}"
  20787. fi
  20788.  
  20789. # Check whether --enable-directx or --disable-directx was given.
  20790. if test "${enable_directx+set}" = set; then
  20791.   enableval="$enable_directx"
  20792.  
  20793. fi;
  20794. if test "x${enable_directx}" != "xno"
  20795. then
  20796.   if test "x${SYS}" = "xmingw32" -o "x${SYS}" = "xcygwin"
  20797.   then
  20798.  
  20799. # Check whether --with-directx or --without-directx was given.
  20800. if test "${with_directx+set}" = set; then
  20801.   withval="$with_directx"
  20802.  
  20803. fi;
  20804.     if test "x${with_directx}" = "x"
  20805.     then
  20806.  
  20807. for ac_header in ddraw.h
  20808. do
  20809. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  20810. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20811.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  20812. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20813. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20814.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20815. fi
  20816. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20817. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20818. else
  20819.   # Is the header compilable?
  20820. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  20821. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  20822. cat >conftest.$ac_ext <<_ACEOF
  20823. #line $LINENO "configure"
  20824. /* confdefs.h.  */
  20825. _ACEOF
  20826. cat confdefs.h >>conftest.$ac_ext
  20827. cat >>conftest.$ac_ext <<_ACEOF
  20828. /* end confdefs.h.  */
  20829. $ac_includes_default
  20830. #include <$ac_header>
  20831. _ACEOF
  20832. rm -f conftest.$ac_objext
  20833. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  20834.   (eval $ac_compile) 2>&5
  20835.   ac_status=$?
  20836.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20837.   (exit $ac_status); } &&
  20838.          { ac_try='test -s conftest.$ac_objext'
  20839.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  20840.   (eval $ac_try) 2>&5
  20841.   ac_status=$?
  20842.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20843.   (exit $ac_status); }; }; then
  20844.   ac_header_compiler=yes
  20845. else
  20846.   echo "$as_me: failed program was:" >&5
  20847. sed 's/^/| /' conftest.$ac_ext >&5
  20848.  
  20849. ac_header_compiler=no
  20850. fi
  20851. rm -f conftest.$ac_objext conftest.$ac_ext
  20852. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  20853. echo "${ECHO_T}$ac_header_compiler" >&6
  20854.  
  20855. # Is the header present?
  20856. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  20857. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  20858. cat >conftest.$ac_ext <<_ACEOF
  20859. #line $LINENO "configure"
  20860. /* confdefs.h.  */
  20861. _ACEOF
  20862. cat confdefs.h >>conftest.$ac_ext
  20863. cat >>conftest.$ac_ext <<_ACEOF
  20864. /* end confdefs.h.  */
  20865. #include <$ac_header>
  20866. _ACEOF
  20867. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  20868.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  20869.   ac_status=$?
  20870.   grep -v '^ *+' conftest.er1 >conftest.err
  20871.   rm -f conftest.er1
  20872.   cat conftest.err >&5
  20873.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  20874.   (exit $ac_status); } >/dev/null; then
  20875.   if test -s conftest.err; then
  20876.     ac_cpp_err=$ac_c_preproc_warn_flag
  20877.   else
  20878.     ac_cpp_err=
  20879.   fi
  20880. else
  20881.   ac_cpp_err=yes
  20882. fi
  20883. if test -z "$ac_cpp_err"; then
  20884.   ac_header_preproc=yes
  20885. else
  20886.   echo "$as_me: failed program was:" >&5
  20887. sed 's/^/| /' conftest.$ac_ext >&5
  20888.  
  20889.   ac_header_preproc=no
  20890. fi
  20891. rm -f conftest.err conftest.$ac_ext
  20892. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  20893. echo "${ECHO_T}$ac_header_preproc" >&6
  20894.  
  20895. # So?  What about this header?
  20896. case $ac_header_compiler:$ac_header_preproc in
  20897.   yes:no )
  20898.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  20899. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  20900.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20901. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20902.     (
  20903.       cat <<\_ASBOX
  20904. ## ------------------------------------ ##
  20905. ## Report this to bug-autoconf@gnu.org. ##
  20906. ## ------------------------------------ ##
  20907. _ASBOX
  20908.     ) |
  20909.       sed "s/^/$as_me: WARNING:     /" >&2
  20910.     ;;
  20911.   no:yes )
  20912.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  20913. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  20914.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  20915. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  20916.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  20917. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  20918.     (
  20919.       cat <<\_ASBOX
  20920. ## ------------------------------------ ##
  20921. ## Report this to bug-autoconf@gnu.org. ##
  20922. ## ------------------------------------ ##
  20923. _ASBOX
  20924.     ) |
  20925.       sed "s/^/$as_me: WARNING:     /" >&2
  20926.     ;;
  20927. esac
  20928. echo "$as_me:$LINENO: checking for $ac_header" >&5
  20929. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20930. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20931.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20932. else
  20933.   eval "$as_ac_Header=$ac_header_preproc"
  20934. fi
  20935. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20936. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20937.  
  20938. fi
  20939. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  20940.   cat >>confdefs.h <<_ACEOF
  20941. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  20942. _ACEOF
  20943.   PLUGINS="${PLUGINS} vout_directx aout_directx"
  20944.         LDFLAGS_vout_directx="${LDFLAGS_directx} -lgdi32"
  20945. fi
  20946.  
  20947. done
  20948.  
  20949.     else
  20950.       echo "$as_me:$LINENO: checking for directX headers in ${with_directx}" >&5
  20951. echo $ECHO_N "checking for directX headers in ${with_directx}... $ECHO_C" >&6
  20952.       if test -f ${with_directx}/ddraw.h
  20953.       then
  20954.         PLUGINS="${PLUGINS} vout_directx aout_directx"
  20955.         LDFLAGS_vout_directx="${LDFLAGS_directx} -lgdi32"
  20956.         CPPFLAGS_vout_directx="${CPPFLAGS_vout_directx} -I${with_directx}"
  20957.         CPPFLAGS_aout_directx="${CPPFLAGS_aout_directx} -I${with_directx}"
  20958.         echo "$as_me:$LINENO: result: yes" >&5
  20959. echo "${ECHO_T}yes" >&6
  20960.       else
  20961.         echo "$as_me:$LINENO: result: no" >&5
  20962. echo "${ECHO_T}no" >&6
  20963.         { { echo "$as_me:$LINENO: error: Cannot find ${with_directx}/ddraw.h!" >&5
  20964. echo "$as_me: error: Cannot find ${with_directx}/ddraw.h!" >&2;}
  20965.    { (exit 1); exit 1; }; }
  20966.       fi
  20967.     fi
  20968.   fi
  20969. fi
  20970.  
  20971. # Check whether --enable-fb or --disable-fb was given.
  20972. if test "${enable_fb+set}" = set; then
  20973.   enableval="$enable_fb"
  20974.  
  20975. fi;
  20976.     if test "x${enable_fb}" != "xno"
  20977.     then
  20978.  
  20979. for ac_header in linux/fb.h
  20980. do
  20981. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  20982. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20983.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  20984. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  20985. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  20986.   echo $ECHO_N "(cached) $ECHO_C" >&6
  20987. fi
  20988. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  20989. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  20990. else
  20991.   # Is the header compilable?
  20992. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  20993. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  20994. cat >conftest.$ac_ext <<_ACEOF
  20995. #line $LINENO "configure"
  20996. /* confdefs.h.  */
  20997. _ACEOF
  20998. cat confdefs.h >>conftest.$ac_ext
  20999. cat >>conftest.$ac_ext <<_ACEOF
  21000. /* end confdefs.h.  */
  21001. $ac_includes_default
  21002. #include <$ac_header>
  21003. _ACEOF
  21004. rm -f conftest.$ac_objext
  21005. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21006.   (eval $ac_compile) 2>&5
  21007.   ac_status=$?
  21008.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21009.   (exit $ac_status); } &&
  21010.          { ac_try='test -s conftest.$ac_objext'
  21011.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21012.   (eval $ac_try) 2>&5
  21013.   ac_status=$?
  21014.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21015.   (exit $ac_status); }; }; then
  21016.   ac_header_compiler=yes
  21017. else
  21018.   echo "$as_me: failed program was:" >&5
  21019. sed 's/^/| /' conftest.$ac_ext >&5
  21020.  
  21021. ac_header_compiler=no
  21022. fi
  21023. rm -f conftest.$ac_objext conftest.$ac_ext
  21024. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  21025. echo "${ECHO_T}$ac_header_compiler" >&6
  21026.  
  21027. # Is the header present?
  21028. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  21029. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  21030. cat >conftest.$ac_ext <<_ACEOF
  21031. #line $LINENO "configure"
  21032. /* confdefs.h.  */
  21033. _ACEOF
  21034. cat confdefs.h >>conftest.$ac_ext
  21035. cat >>conftest.$ac_ext <<_ACEOF
  21036. /* end confdefs.h.  */
  21037. #include <$ac_header>
  21038. _ACEOF
  21039. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  21040.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  21041.   ac_status=$?
  21042.   grep -v '^ *+' conftest.er1 >conftest.err
  21043.   rm -f conftest.er1
  21044.   cat conftest.err >&5
  21045.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21046.   (exit $ac_status); } >/dev/null; then
  21047.   if test -s conftest.err; then
  21048.     ac_cpp_err=$ac_c_preproc_warn_flag
  21049.   else
  21050.     ac_cpp_err=
  21051.   fi
  21052. else
  21053.   ac_cpp_err=yes
  21054. fi
  21055. if test -z "$ac_cpp_err"; then
  21056.   ac_header_preproc=yes
  21057. else
  21058.   echo "$as_me: failed program was:" >&5
  21059. sed 's/^/| /' conftest.$ac_ext >&5
  21060.  
  21061.   ac_header_preproc=no
  21062. fi
  21063. rm -f conftest.err conftest.$ac_ext
  21064. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  21065. echo "${ECHO_T}$ac_header_preproc" >&6
  21066.  
  21067. # So?  What about this header?
  21068. case $ac_header_compiler:$ac_header_preproc in
  21069.   yes:no )
  21070.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  21071. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  21072.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  21073. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  21074.     (
  21075.       cat <<\_ASBOX
  21076. ## ------------------------------------ ##
  21077. ## Report this to bug-autoconf@gnu.org. ##
  21078. ## ------------------------------------ ##
  21079. _ASBOX
  21080.     ) |
  21081.       sed "s/^/$as_me: WARNING:     /" >&2
  21082.     ;;
  21083.   no:yes )
  21084.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  21085. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  21086.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  21087. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  21088.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  21089. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  21090.     (
  21091.       cat <<\_ASBOX
  21092. ## ------------------------------------ ##
  21093. ## Report this to bug-autoconf@gnu.org. ##
  21094. ## ------------------------------------ ##
  21095. _ASBOX
  21096.     ) |
  21097.       sed "s/^/$as_me: WARNING:     /" >&2
  21098.     ;;
  21099. esac
  21100. echo "$as_me:$LINENO: checking for $ac_header" >&5
  21101. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  21102. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21103.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21104. else
  21105.   eval "$as_ac_Header=$ac_header_preproc"
  21106. fi
  21107. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  21108. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  21109.  
  21110. fi
  21111. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  21112.   cat >>confdefs.h <<_ACEOF
  21113. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  21114. _ACEOF
  21115.  
  21116.         PLUGINS="${PLUGINS} fb"
  21117.  
  21118. fi
  21119.  
  21120. done
  21121.  
  21122.     fi
  21123.  
  21124. # Check whether --enable-mga or --disable-mga was given.
  21125. if test "${enable_mga+set}" = set; then
  21126.   enableval="$enable_mga"
  21127.    if test "x${enable_mga}" = "xyes"
  21128.     then
  21129.       PLUGINS="${PLUGINS} mga xmga"
  21130.     fi
  21131. fi;
  21132.  
  21133. # Check whether --enable-svgalib or --disable-svgalib was given.
  21134. if test "${enable_svgalib+set}" = set; then
  21135.   enableval="$enable_svgalib"
  21136.  
  21137. fi;
  21138. if test "x${enable_svgalib}" = "xyes"
  21139. then
  21140.   PLUGINS="${PLUGINS} svgalib"
  21141.   LDFLAGS_svgalib="${LDFLAGS_svgalib} -lvgagl -lvga"
  21142. fi
  21143.  
  21144. # Check whether --enable-ggi or --disable-ggi was given.
  21145. if test "${enable_ggi+set}" = set; then
  21146.   enableval="$enable_ggi"
  21147.  
  21148. fi;
  21149. if test "x${enable_ggi}" = "xyes"
  21150. then
  21151.   PLUGINS="${PLUGINS} ggi"
  21152.   LDFLAGS_ggi="${LDFLAGS_ggi} -lggi"
  21153.  
  21154. # Check whether --with-ggi or --without-ggi was given.
  21155. if test "${with_ggi+set}" = set; then
  21156.   withval="$with_ggi"
  21157.    if test "x${with_ggi}" != "xno" -a "x${with_ggi}" != "x"
  21158.       then
  21159.         CPPFLAGS_ggi="${CPPFLAGS_ggi} -I${with_ggi}/include"
  21160.         LDFLAGS_ggi="${LDFLAGS_ggi} -L${with_ggi}/lib"
  21161.       fi
  21162. fi;
  21163. fi
  21164.  
  21165. # Check whether --enable-glide or --disable-glide was given.
  21166. if test "${enable_glide+set}" = set; then
  21167.   enableval="$enable_glide"
  21168.  
  21169. fi;
  21170. if test "x${enable_glide}" = "xyes"
  21171. then
  21172.   PLUGINS="${PLUGINS} glide"
  21173.   LDFLAGS_glide="${LDFLAGS_glide} -lglide2x -lm"
  21174.   CPPFLAGS_glide="${CPPFLAGS_glide} -I/usr/include/glide"
  21175.  
  21176. # Check whether --with-glide or --without-glide was given.
  21177. if test "${with_glide+set}" = set; then
  21178.   withval="$with_glide"
  21179.    if test "x${with_glide}" != "xno" -a "x${with_glide}" != "x"
  21180.       then
  21181.         CPPFLAGS_glide="${CPPFLAGS_glide} -I${with_glide}/include"
  21182.         LDFLAGS_glide="${LDFLAGS_glide} -L${with_glide}/lib"
  21183.       fi
  21184. fi;
  21185. fi
  21186.  
  21187. # Check whether --enable-aa or --disable-aa was given.
  21188. if test "${enable_aa+set}" = set; then
  21189.   enableval="$enable_aa"
  21190.  
  21191. fi;
  21192. if test "x${enable_aa}" = "xyes"
  21193. then
  21194.   if test "${ac_cv_header_aalib_h+set}" = set; then
  21195.   echo "$as_me:$LINENO: checking for aalib.h" >&5
  21196. echo $ECHO_N "checking for aalib.h... $ECHO_C" >&6
  21197. if test "${ac_cv_header_aalib_h+set}" = set; then
  21198.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21199. fi
  21200. echo "$as_me:$LINENO: result: $ac_cv_header_aalib_h" >&5
  21201. echo "${ECHO_T}$ac_cv_header_aalib_h" >&6
  21202. else
  21203.   # Is the header compilable?
  21204. echo "$as_me:$LINENO: checking aalib.h usability" >&5
  21205. echo $ECHO_N "checking aalib.h usability... $ECHO_C" >&6
  21206. cat >conftest.$ac_ext <<_ACEOF
  21207. #line $LINENO "configure"
  21208. /* confdefs.h.  */
  21209. _ACEOF
  21210. cat confdefs.h >>conftest.$ac_ext
  21211. cat >>conftest.$ac_ext <<_ACEOF
  21212. /* end confdefs.h.  */
  21213. $ac_includes_default
  21214. #include <aalib.h>
  21215. _ACEOF
  21216. rm -f conftest.$ac_objext
  21217. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21218.   (eval $ac_compile) 2>&5
  21219.   ac_status=$?
  21220.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21221.   (exit $ac_status); } &&
  21222.          { ac_try='test -s conftest.$ac_objext'
  21223.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21224.   (eval $ac_try) 2>&5
  21225.   ac_status=$?
  21226.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21227.   (exit $ac_status); }; }; then
  21228.   ac_header_compiler=yes
  21229. else
  21230.   echo "$as_me: failed program was:" >&5
  21231. sed 's/^/| /' conftest.$ac_ext >&5
  21232.  
  21233. ac_header_compiler=no
  21234. fi
  21235. rm -f conftest.$ac_objext conftest.$ac_ext
  21236. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  21237. echo "${ECHO_T}$ac_header_compiler" >&6
  21238.  
  21239. # Is the header present?
  21240. echo "$as_me:$LINENO: checking aalib.h presence" >&5
  21241. echo $ECHO_N "checking aalib.h presence... $ECHO_C" >&6
  21242. cat >conftest.$ac_ext <<_ACEOF
  21243. #line $LINENO "configure"
  21244. /* confdefs.h.  */
  21245. _ACEOF
  21246. cat confdefs.h >>conftest.$ac_ext
  21247. cat >>conftest.$ac_ext <<_ACEOF
  21248. /* end confdefs.h.  */
  21249. #include <aalib.h>
  21250. _ACEOF
  21251. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  21252.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  21253.   ac_status=$?
  21254.   grep -v '^ *+' conftest.er1 >conftest.err
  21255.   rm -f conftest.er1
  21256.   cat conftest.err >&5
  21257.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21258.   (exit $ac_status); } >/dev/null; then
  21259.   if test -s conftest.err; then
  21260.     ac_cpp_err=$ac_c_preproc_warn_flag
  21261.   else
  21262.     ac_cpp_err=
  21263.   fi
  21264. else
  21265.   ac_cpp_err=yes
  21266. fi
  21267. if test -z "$ac_cpp_err"; then
  21268.   ac_header_preproc=yes
  21269. else
  21270.   echo "$as_me: failed program was:" >&5
  21271. sed 's/^/| /' conftest.$ac_ext >&5
  21272.  
  21273.   ac_header_preproc=no
  21274. fi
  21275. rm -f conftest.err conftest.$ac_ext
  21276. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  21277. echo "${ECHO_T}$ac_header_preproc" >&6
  21278.  
  21279. # So?  What about this header?
  21280. case $ac_header_compiler:$ac_header_preproc in
  21281.   yes:no )
  21282.     { echo "$as_me:$LINENO: WARNING: aalib.h: accepted by the compiler, rejected by the preprocessor!" >&5
  21283. echo "$as_me: WARNING: aalib.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  21284.     { echo "$as_me:$LINENO: WARNING: aalib.h: proceeding with the preprocessor's result" >&5
  21285. echo "$as_me: WARNING: aalib.h: proceeding with the preprocessor's result" >&2;}
  21286.     (
  21287.       cat <<\_ASBOX
  21288. ## ------------------------------------ ##
  21289. ## Report this to bug-autoconf@gnu.org. ##
  21290. ## ------------------------------------ ##
  21291. _ASBOX
  21292.     ) |
  21293.       sed "s/^/$as_me: WARNING:     /" >&2
  21294.     ;;
  21295.   no:yes )
  21296.     { echo "$as_me:$LINENO: WARNING: aalib.h: present but cannot be compiled" >&5
  21297. echo "$as_me: WARNING: aalib.h: present but cannot be compiled" >&2;}
  21298.     { echo "$as_me:$LINENO: WARNING: aalib.h: check for missing prerequisite headers?" >&5
  21299. echo "$as_me: WARNING: aalib.h: check for missing prerequisite headers?" >&2;}
  21300.     { echo "$as_me:$LINENO: WARNING: aalib.h: proceeding with the preprocessor's result" >&5
  21301. echo "$as_me: WARNING: aalib.h: proceeding with the preprocessor's result" >&2;}
  21302.     (
  21303.       cat <<\_ASBOX
  21304. ## ------------------------------------ ##
  21305. ## Report this to bug-autoconf@gnu.org. ##
  21306. ## ------------------------------------ ##
  21307. _ASBOX
  21308.     ) |
  21309.       sed "s/^/$as_me: WARNING:     /" >&2
  21310.     ;;
  21311. esac
  21312. echo "$as_me:$LINENO: checking for aalib.h" >&5
  21313. echo $ECHO_N "checking for aalib.h... $ECHO_C" >&6
  21314. if test "${ac_cv_header_aalib_h+set}" = set; then
  21315.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21316. else
  21317.   ac_cv_header_aalib_h=$ac_header_preproc
  21318. fi
  21319. echo "$as_me:$LINENO: result: $ac_cv_header_aalib_h" >&5
  21320. echo "${ECHO_T}$ac_cv_header_aalib_h" >&6
  21321.  
  21322. fi
  21323. if test $ac_cv_header_aalib_h = yes; then
  21324.   have_aa="true"
  21325. else
  21326.   have_aa="false"
  21327. fi
  21328.  
  21329.  
  21330.   if test "x${have_aa}" = "xtrue"
  21331.   then
  21332.     PLUGINS="${PLUGINS} aa"
  21333.     LDFLAGS_aa="${LDFLAGS_aa} -laa"
  21334.   fi
  21335. fi
  21336.  
  21337. # Check whether --enable-wingdi or --disable-wingdi was given.
  21338. if test "${enable_wingdi+set}" = set; then
  21339.   enableval="$enable_wingdi"
  21340.  
  21341. fi;
  21342. if test "x${enable_wingdi}" != "xno"; then
  21343.   if test "x${SYS}" = "xmingw32" -o "x${SYS}" = "xcygwin"; then
  21344.     PLUGINS="${PLUGINS} wingdi"
  21345.     LDFLAGS_wingdi="${LDFLAGS_wingdi} -lgdi32"
  21346.   fi
  21347. fi
  21348.  
  21349.  
  21350.  
  21351. # Check whether --with- or --without- was given.
  21352. if test "${with_+set}" = set; then
  21353.   withval="$with_"
  21354.  
  21355. fi;
  21356.  
  21357. # Check whether --enable-oss or --disable-oss was given.
  21358. if test "${enable_oss+set}" = set; then
  21359.   enableval="$enable_oss"
  21360.  
  21361. fi;
  21362.  
  21363. if test "x${enable_oss}" != "xno" &&
  21364.   (test "x${SYS}" != "xmingw32" || test "x${enable_oss}" = "xyes")
  21365. then
  21366.  
  21367.  
  21368.  
  21369. for ac_header in soundcard.h sys/soundcard.h machine/soundcard.h
  21370. do
  21371. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  21372. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21373.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  21374. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  21375. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21376.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21377. fi
  21378. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  21379. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  21380. else
  21381.   # Is the header compilable?
  21382. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  21383. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  21384. cat >conftest.$ac_ext <<_ACEOF
  21385. #line $LINENO "configure"
  21386. /* confdefs.h.  */
  21387. _ACEOF
  21388. cat confdefs.h >>conftest.$ac_ext
  21389. cat >>conftest.$ac_ext <<_ACEOF
  21390. /* end confdefs.h.  */
  21391. $ac_includes_default
  21392. #include <$ac_header>
  21393. _ACEOF
  21394. rm -f conftest.$ac_objext
  21395. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21396.   (eval $ac_compile) 2>&5
  21397.   ac_status=$?
  21398.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21399.   (exit $ac_status); } &&
  21400.          { ac_try='test -s conftest.$ac_objext'
  21401.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21402.   (eval $ac_try) 2>&5
  21403.   ac_status=$?
  21404.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21405.   (exit $ac_status); }; }; then
  21406.   ac_header_compiler=yes
  21407. else
  21408.   echo "$as_me: failed program was:" >&5
  21409. sed 's/^/| /' conftest.$ac_ext >&5
  21410.  
  21411. ac_header_compiler=no
  21412. fi
  21413. rm -f conftest.$ac_objext conftest.$ac_ext
  21414. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  21415. echo "${ECHO_T}$ac_header_compiler" >&6
  21416.  
  21417. # Is the header present?
  21418. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  21419. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  21420. cat >conftest.$ac_ext <<_ACEOF
  21421. #line $LINENO "configure"
  21422. /* confdefs.h.  */
  21423. _ACEOF
  21424. cat confdefs.h >>conftest.$ac_ext
  21425. cat >>conftest.$ac_ext <<_ACEOF
  21426. /* end confdefs.h.  */
  21427. #include <$ac_header>
  21428. _ACEOF
  21429. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  21430.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  21431.   ac_status=$?
  21432.   grep -v '^ *+' conftest.er1 >conftest.err
  21433.   rm -f conftest.er1
  21434.   cat conftest.err >&5
  21435.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21436.   (exit $ac_status); } >/dev/null; then
  21437.   if test -s conftest.err; then
  21438.     ac_cpp_err=$ac_c_preproc_warn_flag
  21439.   else
  21440.     ac_cpp_err=
  21441.   fi
  21442. else
  21443.   ac_cpp_err=yes
  21444. fi
  21445. if test -z "$ac_cpp_err"; then
  21446.   ac_header_preproc=yes
  21447. else
  21448.   echo "$as_me: failed program was:" >&5
  21449. sed 's/^/| /' conftest.$ac_ext >&5
  21450.  
  21451.   ac_header_preproc=no
  21452. fi
  21453. rm -f conftest.err conftest.$ac_ext
  21454. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  21455. echo "${ECHO_T}$ac_header_preproc" >&6
  21456.  
  21457. # So?  What about this header?
  21458. case $ac_header_compiler:$ac_header_preproc in
  21459.   yes:no )
  21460.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  21461. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  21462.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  21463. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  21464.     (
  21465.       cat <<\_ASBOX
  21466. ## ------------------------------------ ##
  21467. ## Report this to bug-autoconf@gnu.org. ##
  21468. ## ------------------------------------ ##
  21469. _ASBOX
  21470.     ) |
  21471.       sed "s/^/$as_me: WARNING:     /" >&2
  21472.     ;;
  21473.   no:yes )
  21474.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  21475. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  21476.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  21477. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  21478.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  21479. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  21480.     (
  21481.       cat <<\_ASBOX
  21482. ## ------------------------------------ ##
  21483. ## Report this to bug-autoconf@gnu.org. ##
  21484. ## ------------------------------------ ##
  21485. _ASBOX
  21486.     ) |
  21487.       sed "s/^/$as_me: WARNING:     /" >&2
  21488.     ;;
  21489. esac
  21490. echo "$as_me:$LINENO: checking for $ac_header" >&5
  21491. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  21492. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21493.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21494. else
  21495.   eval "$as_ac_Header=$ac_header_preproc"
  21496. fi
  21497. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  21498. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  21499.  
  21500. fi
  21501. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  21502.   cat >>confdefs.h <<_ACEOF
  21503. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  21504. _ACEOF
  21505.  
  21506.     PLUGINS="${PLUGINS} oss"
  21507.     echo "$as_me:$LINENO: checking for main in -lossaudio" >&5
  21508. echo $ECHO_N "checking for main in -lossaudio... $ECHO_C" >&6
  21509. if test "${ac_cv_lib_ossaudio_main+set}" = set; then
  21510.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21511. else
  21512.   ac_check_lib_save_LIBS=$LIBS
  21513. LIBS="-lossaudio  $LIBS"
  21514. cat >conftest.$ac_ext <<_ACEOF
  21515. #line $LINENO "configure"
  21516. /* confdefs.h.  */
  21517. _ACEOF
  21518. cat confdefs.h >>conftest.$ac_ext
  21519. cat >>conftest.$ac_ext <<_ACEOF
  21520. /* end confdefs.h.  */
  21521.  
  21522.  
  21523. int
  21524. main ()
  21525. {
  21526. main ();
  21527.   ;
  21528.   return 0;
  21529. }
  21530. _ACEOF
  21531. rm -f conftest.$ac_objext conftest$ac_exeext
  21532. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  21533.   (eval $ac_link) 2>&5
  21534.   ac_status=$?
  21535.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21536.   (exit $ac_status); } &&
  21537.          { ac_try='test -s conftest$ac_exeext'
  21538.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21539.   (eval $ac_try) 2>&5
  21540.   ac_status=$?
  21541.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21542.   (exit $ac_status); }; }; then
  21543.   ac_cv_lib_ossaudio_main=yes
  21544. else
  21545.   echo "$as_me: failed program was:" >&5
  21546. sed 's/^/| /' conftest.$ac_ext >&5
  21547.  
  21548. ac_cv_lib_ossaudio_main=no
  21549. fi
  21550. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  21551. LIBS=$ac_check_lib_save_LIBS
  21552. fi
  21553. echo "$as_me:$LINENO: result: $ac_cv_lib_ossaudio_main" >&5
  21554. echo "${ECHO_T}$ac_cv_lib_ossaudio_main" >&6
  21555. if test $ac_cv_lib_ossaudio_main = yes; then
  21556.   LDFLAGS_oss="${LDFLAGS_oss} -lossaudio"
  21557. fi
  21558.  
  21559.  
  21560. fi
  21561.  
  21562. done
  21563.  
  21564. fi
  21565.  
  21566. # Check whether --enable-esd or --disable-esd was given.
  21567. if test "${enable_esd+set}" = set; then
  21568.   enableval="$enable_esd"
  21569.   if test "x${enable_esd}" = "xyes"
  21570.    then
  21571.      # Extract the first word of "esd-config", so it can be a program name with args.
  21572. set dummy esd-config; ac_word=$2
  21573. echo "$as_me:$LINENO: checking for $ac_word" >&5
  21574. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  21575. if test "${ac_cv_path_ESD_CONFIG+set}" = set; then
  21576.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21577. else
  21578.   case $ESD_CONFIG in
  21579.   [\\/]* | ?:[\\/]*)
  21580.   ac_cv_path_ESD_CONFIG="$ESD_CONFIG" # Let the user override the test with a path.
  21581.   ;;
  21582.   *)
  21583.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  21584. for as_dir in $PATH
  21585. do
  21586.   IFS=$as_save_IFS
  21587.   test -z "$as_dir" && as_dir=.
  21588.   for ac_exec_ext in '' $ac_executable_extensions; do
  21589.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  21590.     ac_cv_path_ESD_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  21591.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  21592.     break 2
  21593.   fi
  21594. done
  21595. done
  21596.  
  21597.   test -z "$ac_cv_path_ESD_CONFIG" && ac_cv_path_ESD_CONFIG="no"
  21598.   ;;
  21599. esac
  21600. fi
  21601. ESD_CONFIG=$ac_cv_path_ESD_CONFIG
  21602.  
  21603. if test -n "$ESD_CONFIG"; then
  21604.   echo "$as_me:$LINENO: result: $ESD_CONFIG" >&5
  21605. echo "${ECHO_T}$ESD_CONFIG" >&6
  21606. else
  21607.   echo "$as_me:$LINENO: result: no" >&5
  21608. echo "${ECHO_T}no" >&6
  21609. fi
  21610.  
  21611.      if test "x${ESD_CONFIG}" != "xno"
  21612.      then
  21613.        PLUGINS="${PLUGINS} esd"
  21614.        CFLAGS_esd="${CFLAGS_esd} `${ESD_CONFIG} --cflags`"
  21615.        LDFLAGS_esd="${LDFLAGS_esd} `${ESD_CONFIG} --libs`"
  21616.      fi
  21617.    fi
  21618. fi;
  21619.  
  21620. # Check whether --enable-arts or --disable-arts was given.
  21621. if test "${enable_arts+set}" = set; then
  21622.   enableval="$enable_arts"
  21623.   if test "x${enable_arts}" = "xyes"
  21624.    then
  21625.      # Extract the first word of "artsc-config", so it can be a program name with args.
  21626. set dummy artsc-config; ac_word=$2
  21627. echo "$as_me:$LINENO: checking for $ac_word" >&5
  21628. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  21629. if test "${ac_cv_path_ARTS_CONFIG+set}" = set; then
  21630.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21631. else
  21632.   case $ARTS_CONFIG in
  21633.   [\\/]* | ?:[\\/]*)
  21634.   ac_cv_path_ARTS_CONFIG="$ARTS_CONFIG" # Let the user override the test with a path.
  21635.   ;;
  21636.   *)
  21637.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  21638. for as_dir in $PATH
  21639. do
  21640.   IFS=$as_save_IFS
  21641.   test -z "$as_dir" && as_dir=.
  21642.   for ac_exec_ext in '' $ac_executable_extensions; do
  21643.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  21644.     ac_cv_path_ARTS_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  21645.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  21646.     break 2
  21647.   fi
  21648. done
  21649. done
  21650.  
  21651.   test -z "$ac_cv_path_ARTS_CONFIG" && ac_cv_path_ARTS_CONFIG="no"
  21652.   ;;
  21653. esac
  21654. fi
  21655. ARTS_CONFIG=$ac_cv_path_ARTS_CONFIG
  21656.  
  21657. if test -n "$ARTS_CONFIG"; then
  21658.   echo "$as_me:$LINENO: result: $ARTS_CONFIG" >&5
  21659. echo "${ECHO_T}$ARTS_CONFIG" >&6
  21660. else
  21661.   echo "$as_me:$LINENO: result: no" >&5
  21662. echo "${ECHO_T}no" >&6
  21663. fi
  21664.  
  21665.      if test "x${ARTS_CONFIG}" != "xno"
  21666.      then
  21667.        PLUGINS="${PLUGINS} arts"
  21668.        CFLAGS_arts="${CFLAGS_arts} `${ARTS_CONFIG} --cflags`"
  21669.        LDFLAGS_arts="${LDFLAGS_arts} `${ARTS_CONFIG} --libs `"
  21670.      fi
  21671.    fi
  21672. fi;
  21673.  
  21674. # Check whether --enable-alsa or --disable-alsa was given.
  21675. if test "${enable_alsa+set}" = set; then
  21676.   enableval="$enable_alsa"
  21677.   if test "x${enable_alsa}" = "xyes"
  21678.    then
  21679.      if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  21680.   echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5
  21681. echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6
  21682. if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  21683.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21684. fi
  21685. echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5
  21686. echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6
  21687. else
  21688.   # Is the header compilable?
  21689. echo "$as_me:$LINENO: checking alsa/asoundlib.h usability" >&5
  21690. echo $ECHO_N "checking alsa/asoundlib.h usability... $ECHO_C" >&6
  21691. cat >conftest.$ac_ext <<_ACEOF
  21692. #line $LINENO "configure"
  21693. /* confdefs.h.  */
  21694. _ACEOF
  21695. cat confdefs.h >>conftest.$ac_ext
  21696. cat >>conftest.$ac_ext <<_ACEOF
  21697. /* end confdefs.h.  */
  21698. $ac_includes_default
  21699. #include <alsa/asoundlib.h>
  21700. _ACEOF
  21701. rm -f conftest.$ac_objext
  21702. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21703.   (eval $ac_compile) 2>&5
  21704.   ac_status=$?
  21705.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21706.   (exit $ac_status); } &&
  21707.          { ac_try='test -s conftest.$ac_objext'
  21708.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21709.   (eval $ac_try) 2>&5
  21710.   ac_status=$?
  21711.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21712.   (exit $ac_status); }; }; then
  21713.   ac_header_compiler=yes
  21714. else
  21715.   echo "$as_me: failed program was:" >&5
  21716. sed 's/^/| /' conftest.$ac_ext >&5
  21717.  
  21718. ac_header_compiler=no
  21719. fi
  21720. rm -f conftest.$ac_objext conftest.$ac_ext
  21721. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  21722. echo "${ECHO_T}$ac_header_compiler" >&6
  21723.  
  21724. # Is the header present?
  21725. echo "$as_me:$LINENO: checking alsa/asoundlib.h presence" >&5
  21726. echo $ECHO_N "checking alsa/asoundlib.h presence... $ECHO_C" >&6
  21727. cat >conftest.$ac_ext <<_ACEOF
  21728. #line $LINENO "configure"
  21729. /* confdefs.h.  */
  21730. _ACEOF
  21731. cat confdefs.h >>conftest.$ac_ext
  21732. cat >>conftest.$ac_ext <<_ACEOF
  21733. /* end confdefs.h.  */
  21734. #include <alsa/asoundlib.h>
  21735. _ACEOF
  21736. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  21737.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  21738.   ac_status=$?
  21739.   grep -v '^ *+' conftest.er1 >conftest.err
  21740.   rm -f conftest.er1
  21741.   cat conftest.err >&5
  21742.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21743.   (exit $ac_status); } >/dev/null; then
  21744.   if test -s conftest.err; then
  21745.     ac_cpp_err=$ac_c_preproc_warn_flag
  21746.   else
  21747.     ac_cpp_err=
  21748.   fi
  21749. else
  21750.   ac_cpp_err=yes
  21751. fi
  21752. if test -z "$ac_cpp_err"; then
  21753.   ac_header_preproc=yes
  21754. else
  21755.   echo "$as_me: failed program was:" >&5
  21756. sed 's/^/| /' conftest.$ac_ext >&5
  21757.  
  21758.   ac_header_preproc=no
  21759. fi
  21760. rm -f conftest.err conftest.$ac_ext
  21761. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  21762. echo "${ECHO_T}$ac_header_preproc" >&6
  21763.  
  21764. # So?  What about this header?
  21765. case $ac_header_compiler:$ac_header_preproc in
  21766.   yes:no )
  21767.     { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: accepted by the compiler, rejected by the preprocessor!" >&5
  21768. echo "$as_me: WARNING: alsa/asoundlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  21769.     { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&5
  21770. echo "$as_me: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&2;}
  21771.     (
  21772.       cat <<\_ASBOX
  21773. ## ------------------------------------ ##
  21774. ## Report this to bug-autoconf@gnu.org. ##
  21775. ## ------------------------------------ ##
  21776. _ASBOX
  21777.     ) |
  21778.       sed "s/^/$as_me: WARNING:     /" >&2
  21779.     ;;
  21780.   no:yes )
  21781.     { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: present but cannot be compiled" >&5
  21782. echo "$as_me: WARNING: alsa/asoundlib.h: present but cannot be compiled" >&2;}
  21783.     { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: check for missing prerequisite headers?" >&5
  21784. echo "$as_me: WARNING: alsa/asoundlib.h: check for missing prerequisite headers?" >&2;}
  21785.     { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&5
  21786. echo "$as_me: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&2;}
  21787.     (
  21788.       cat <<\_ASBOX
  21789. ## ------------------------------------ ##
  21790. ## Report this to bug-autoconf@gnu.org. ##
  21791. ## ------------------------------------ ##
  21792. _ASBOX
  21793.     ) |
  21794.       sed "s/^/$as_me: WARNING:     /" >&2
  21795.     ;;
  21796. esac
  21797. echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5
  21798. echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6
  21799. if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  21800.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21801. else
  21802.   ac_cv_header_alsa_asoundlib_h=$ac_header_preproc
  21803. fi
  21804. echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5
  21805. echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6
  21806.  
  21807. fi
  21808. if test $ac_cv_header_alsa_asoundlib_h = yes; then
  21809.   echo "$as_me:$LINENO: checking for main in -lasound" >&5
  21810. echo $ECHO_N "checking for main in -lasound... $ECHO_C" >&6
  21811. if test "${ac_cv_lib_asound_main+set}" = set; then
  21812.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21813. else
  21814.   ac_check_lib_save_LIBS=$LIBS
  21815. LIBS="-lasound  $LIBS"
  21816. cat >conftest.$ac_ext <<_ACEOF
  21817. #line $LINENO "configure"
  21818. /* confdefs.h.  */
  21819. _ACEOF
  21820. cat confdefs.h >>conftest.$ac_ext
  21821. cat >>conftest.$ac_ext <<_ACEOF
  21822. /* end confdefs.h.  */
  21823.  
  21824.  
  21825. int
  21826. main ()
  21827. {
  21828. main ();
  21829.   ;
  21830.   return 0;
  21831. }
  21832. _ACEOF
  21833. rm -f conftest.$ac_objext conftest$ac_exeext
  21834. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  21835.   (eval $ac_link) 2>&5
  21836.   ac_status=$?
  21837.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21838.   (exit $ac_status); } &&
  21839.          { ac_try='test -s conftest$ac_exeext'
  21840.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21841.   (eval $ac_try) 2>&5
  21842.   ac_status=$?
  21843.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21844.   (exit $ac_status); }; }; then
  21845.   ac_cv_lib_asound_main=yes
  21846. else
  21847.   echo "$as_me: failed program was:" >&5
  21848. sed 's/^/| /' conftest.$ac_ext >&5
  21849.  
  21850. ac_cv_lib_asound_main=no
  21851. fi
  21852. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  21853. LIBS=$ac_check_lib_save_LIBS
  21854. fi
  21855. echo "$as_me:$LINENO: result: $ac_cv_lib_asound_main" >&5
  21856. echo "${ECHO_T}$ac_cv_lib_asound_main" >&6
  21857. if test $ac_cv_lib_asound_main = yes; then
  21858.   have_alsa="true"
  21859. else
  21860.   have_alsa="false"
  21861. fi
  21862.  
  21863. else
  21864.   have_alsa="false"
  21865. fi
  21866.  
  21867.  
  21868.      if test "x${have_alsa}" = "xtrue"
  21869.      then
  21870.        cat >conftest.$ac_ext <<_ACEOF
  21871. #line $LINENO "configure"
  21872. /* confdefs.h.  */
  21873. _ACEOF
  21874. cat confdefs.h >>conftest.$ac_ext
  21875. cat >>conftest.$ac_ext <<_ACEOF
  21876. /* end confdefs.h.  */
  21877. #define ALSA_PCM_NEW_HW_PARAMS_API
  21878.                        #define ALSA_PCM_NEW_SW_PARAMS_API
  21879.                        #include <alsa/asoundlib.h>
  21880. int
  21881. main ()
  21882. {
  21883. void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }
  21884.   ;
  21885.   return 0;
  21886. }
  21887. _ACEOF
  21888. rm -f conftest.$ac_objext
  21889. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21890.   (eval $ac_compile) 2>&5
  21891.   ac_status=$?
  21892.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21893.   (exit $ac_status); } &&
  21894.          { ac_try='test -s conftest.$ac_objext'
  21895.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21896.   (eval $ac_try) 2>&5
  21897.   ac_status=$?
  21898.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21899.   (exit $ac_status); }; }; then
  21900.  
  21901. cat >>confdefs.h <<\_ACEOF
  21902. #define HAVE_ALSA_NEW_API 1
  21903. _ACEOF
  21904.  
  21905. else
  21906.   echo "$as_me: failed program was:" >&5
  21907. sed 's/^/| /' conftest.$ac_ext >&5
  21908.  
  21909. fi
  21910. rm -f conftest.$ac_objext conftest.$ac_ext
  21911.        PLUGINS="${PLUGINS} alsa"
  21912.        LDFLAGS_alsa="${LDFLAGS_alsa} -lasound -lm -ldl"
  21913.      else
  21914.        { { echo "$as_me:$LINENO: error: Could not find ALSA development headers" >&5
  21915. echo "$as_me: error: Could not find ALSA development headers" >&2;}
  21916.    { (exit 1); exit 1; }; }
  21917.      fi
  21918.    fi
  21919. fi;
  21920.  
  21921. # Check whether --enable-waveout or --disable-waveout was given.
  21922. if test "${enable_waveout+set}" = set; then
  21923.   enableval="$enable_waveout"
  21924.  
  21925. fi;
  21926. if test "x${enable_waveout}" != "xno"; then
  21927.   if test "x${SYS}" = "xmingw32" -o "x${SYS}" = "xcygwin"; then
  21928.     PLUGINS="${PLUGINS} waveout"
  21929.     LDFLAGS_waveout="-lwinmm"
  21930.   fi
  21931. fi
  21932.  
  21933. # Check whether --enable-coreaudio or --disable-coreaudio was given.
  21934. if test "${enable_coreaudio+set}" = set; then
  21935.   enableval="$enable_coreaudio"
  21936.  
  21937. fi;
  21938. if test "x${enable_coreaudio}" != "xno" &&
  21939.   (test "x${SYS}" = "xdarwin" || test "x${enable_coreaudio}" = "xyes")
  21940. then
  21941.  
  21942. for ac_header in CoreAudio/CoreAudio.h
  21943. do
  21944. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  21945. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21946.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  21947. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  21948. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  21949.   echo $ECHO_N "(cached) $ECHO_C" >&6
  21950. fi
  21951. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  21952. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  21953. else
  21954.   # Is the header compilable?
  21955. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  21956. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  21957. cat >conftest.$ac_ext <<_ACEOF
  21958. #line $LINENO "configure"
  21959. /* confdefs.h.  */
  21960. _ACEOF
  21961. cat confdefs.h >>conftest.$ac_ext
  21962. cat >>conftest.$ac_ext <<_ACEOF
  21963. /* end confdefs.h.  */
  21964. $ac_includes_default
  21965. #include <$ac_header>
  21966. _ACEOF
  21967. rm -f conftest.$ac_objext
  21968. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  21969.   (eval $ac_compile) 2>&5
  21970.   ac_status=$?
  21971.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21972.   (exit $ac_status); } &&
  21973.          { ac_try='test -s conftest.$ac_objext'
  21974.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  21975.   (eval $ac_try) 2>&5
  21976.   ac_status=$?
  21977.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  21978.   (exit $ac_status); }; }; then
  21979.   ac_header_compiler=yes
  21980. else
  21981.   echo "$as_me: failed program was:" >&5
  21982. sed 's/^/| /' conftest.$ac_ext >&5
  21983.  
  21984. ac_header_compiler=no
  21985. fi
  21986. rm -f conftest.$ac_objext conftest.$ac_ext
  21987. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  21988. echo "${ECHO_T}$ac_header_compiler" >&6
  21989.  
  21990. # Is the header present?
  21991. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  21992. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  21993. cat >conftest.$ac_ext <<_ACEOF
  21994. #line $LINENO "configure"
  21995. /* confdefs.h.  */
  21996. _ACEOF
  21997. cat confdefs.h >>conftest.$ac_ext
  21998. cat >>conftest.$ac_ext <<_ACEOF
  21999. /* end confdefs.h.  */
  22000. #include <$ac_header>
  22001. _ACEOF
  22002. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  22003.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  22004.   ac_status=$?
  22005.   grep -v '^ *+' conftest.er1 >conftest.err
  22006.   rm -f conftest.er1
  22007.   cat conftest.err >&5
  22008.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22009.   (exit $ac_status); } >/dev/null; then
  22010.   if test -s conftest.err; then
  22011.     ac_cpp_err=$ac_c_preproc_warn_flag
  22012.   else
  22013.     ac_cpp_err=
  22014.   fi
  22015. else
  22016.   ac_cpp_err=yes
  22017. fi
  22018. if test -z "$ac_cpp_err"; then
  22019.   ac_header_preproc=yes
  22020. else
  22021.   echo "$as_me: failed program was:" >&5
  22022. sed 's/^/| /' conftest.$ac_ext >&5
  22023.  
  22024.   ac_header_preproc=no
  22025. fi
  22026. rm -f conftest.err conftest.$ac_ext
  22027. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  22028. echo "${ECHO_T}$ac_header_preproc" >&6
  22029.  
  22030. # So?  What about this header?
  22031. case $ac_header_compiler:$ac_header_preproc in
  22032.   yes:no )
  22033.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  22034. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  22035.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22036. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22037.     (
  22038.       cat <<\_ASBOX
  22039. ## ------------------------------------ ##
  22040. ## Report this to bug-autoconf@gnu.org. ##
  22041. ## ------------------------------------ ##
  22042. _ASBOX
  22043.     ) |
  22044.       sed "s/^/$as_me: WARNING:     /" >&2
  22045.     ;;
  22046.   no:yes )
  22047.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  22048. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  22049.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  22050. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  22051.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22052. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22053.     (
  22054.       cat <<\_ASBOX
  22055. ## ------------------------------------ ##
  22056. ## Report this to bug-autoconf@gnu.org. ##
  22057. ## ------------------------------------ ##
  22058. _ASBOX
  22059.     ) |
  22060.       sed "s/^/$as_me: WARNING:     /" >&2
  22061.     ;;
  22062. esac
  22063. echo "$as_me:$LINENO: checking for $ac_header" >&5
  22064. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22065. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22066.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22067. else
  22068.   eval "$as_ac_Header=$ac_header_preproc"
  22069. fi
  22070. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22071. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22072.  
  22073. fi
  22074. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  22075.   cat >>confdefs.h <<_ACEOF
  22076. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  22077. _ACEOF
  22078.   BUILTINS="${BUILTINS} coreaudio"
  22079.       LDFLAGS_coreaudio="${LDFLAGS_coreaudio} -framework CoreAudio"
  22080.       echo "$as_me:$LINENO: checking for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h" >&5
  22081. echo $ECHO_N "checking for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h... $ECHO_C" >&6
  22082.       cat >conftest.$ac_ext <<_ACEOF
  22083. #line $LINENO "configure"
  22084. /* confdefs.h.  */
  22085. _ACEOF
  22086. cat confdefs.h >>conftest.$ac_ext
  22087. cat >>conftest.$ac_ext <<_ACEOF
  22088. /* end confdefs.h.  */
  22089. #include <AudioToolbox/AudioConverter.h>
  22090.  
  22091. _ACEOF
  22092. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  22093.   $EGREP "kAudioConverterPrimeMethod" >/dev/null 2>&1; then
  22094.  
  22095.         echo "$as_me:$LINENO: result: yes" >&5
  22096. echo "${ECHO_T}yes" >&6
  22097.         PLUGINS="${PLUGINS} coreaudio_resampler"
  22098.         LDFLAGS_coreaudio_resampler="${LDFLAGS_coreaudio_resampler} -framework AudioToolbox"
  22099.  
  22100. else
  22101.    echo "$as_me:$LINENO: result: no" >&5
  22102. echo "${ECHO_T}no" >&6
  22103. fi
  22104. rm -f conftest*
  22105.  
  22106.  
  22107. else
  22108.    { { echo "$as_me:$LINENO: error: cannot find CoreAudio headers" >&5
  22109. echo "$as_me: error: cannot find CoreAudio headers" >&2;}
  22110.    { (exit 1); exit 1; }; }
  22111. fi
  22112.  
  22113. done
  22114.  
  22115. fi
  22116.  
  22117.  
  22118.  
  22119. # Check whether --with- or --without- was given.
  22120. if test "${with_+set}" = set; then
  22121.   withval="$with_"
  22122.  
  22123. fi;
  22124.  
  22125. if test "x${SYS}" = "xbeos"
  22126. then
  22127.     PLUGINS="${PLUGINS} beos"
  22128. fi
  22129.  
  22130. # Check whether --enable-skins or --disable-skins was given.
  22131. if test "${enable_skins+set}" = set; then
  22132.   enableval="$enable_skins"
  22133.  
  22134. fi;
  22135. if test "x${enable_skins}" != "xno"; then
  22136.   if test "x${SYS}" = "xmingw32" -o "x${SYS}" = "xcygwin"; then
  22137.     PLUGINS="${PLUGINS} skins"
  22138.     CPPFLAGS_skins="${CPPFLAGS_skins} -O2 -fno-rtti -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/win32 -Imodules/gui/skins/controls"
  22139.     LDFLAGS_skins="${LDFLAGS_skins} -lstdc++ -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32 -lmsimg32"
  22140.   fi
  22141. fi
  22142.  
  22143. # Check whether --enable-gtk or --disable-gtk was given.
  22144. if test "${enable_gtk+set}" = set; then
  22145.   enableval="$enable_gtk"
  22146.  
  22147. fi;
  22148. if test "x${enable_gtk}" != "xno"
  22149. then
  22150.   GTK_PATH="${PATH}"
  22151.  
  22152. # Check whether --with-gtk-config-path or --without-gtk-config-path was given.
  22153. if test "${with_gtk_config_path+set}" = set; then
  22154.   withval="$with_gtk_config_path"
  22155.    if test "x${with_gtk_config_path}" != "xno"
  22156.       then
  22157.         GTK_PATH="${with_gtk_config_path}:${PATH}"
  22158.       fi
  22159. fi;
  22160.   # look for gtk-config
  22161.   # Extract the first word of "gtk12-config", so it can be a program name with args.
  22162. set dummy gtk12-config; ac_word=$2
  22163. echo "$as_me:$LINENO: checking for $ac_word" >&5
  22164. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  22165. if test "${ac_cv_path_GTK12_CONFIG+set}" = set; then
  22166.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22167. else
  22168.   case $GTK12_CONFIG in
  22169.   [\\/]* | ?:[\\/]*)
  22170.   ac_cv_path_GTK12_CONFIG="$GTK12_CONFIG" # Let the user override the test with a path.
  22171.   ;;
  22172.   *)
  22173.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  22174. for as_dir in ${GTK_PATH}
  22175. do
  22176.   IFS=$as_save_IFS
  22177.   test -z "$as_dir" && as_dir=.
  22178.   for ac_exec_ext in '' $ac_executable_extensions; do
  22179.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  22180.     ac_cv_path_GTK12_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  22181.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  22182.     break 2
  22183.   fi
  22184. done
  22185. done
  22186.  
  22187.   test -z "$ac_cv_path_GTK12_CONFIG" && ac_cv_path_GTK12_CONFIG="no"
  22188.   ;;
  22189. esac
  22190. fi
  22191. GTK12_CONFIG=$ac_cv_path_GTK12_CONFIG
  22192.  
  22193. if test -n "$GTK12_CONFIG"; then
  22194.   echo "$as_me:$LINENO: result: $GTK12_CONFIG" >&5
  22195. echo "${ECHO_T}$GTK12_CONFIG" >&6
  22196. else
  22197.   echo "$as_me:$LINENO: result: no" >&5
  22198. echo "${ECHO_T}no" >&6
  22199. fi
  22200.  
  22201.   GTK_CONFIG=${GTK12_CONFIG}
  22202.   if test "x${GTK_CONFIG}" = "xno"
  22203.   then
  22204.     # Extract the first word of "gtk-config", so it can be a program name with args.
  22205. set dummy gtk-config; ac_word=$2
  22206. echo "$as_me:$LINENO: checking for $ac_word" >&5
  22207. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  22208. if test "${ac_cv_path_GTK_CONFIG+set}" = set; then
  22209.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22210. else
  22211.   case $GTK_CONFIG in
  22212.   [\\/]* | ?:[\\/]*)
  22213.   ac_cv_path_GTK_CONFIG="$GTK_CONFIG" # Let the user override the test with a path.
  22214.   ;;
  22215.   *)
  22216.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  22217. for as_dir in ${GTK_PATH}
  22218. do
  22219.   IFS=$as_save_IFS
  22220.   test -z "$as_dir" && as_dir=.
  22221.   for ac_exec_ext in '' $ac_executable_extensions; do
  22222.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  22223.     ac_cv_path_GTK_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  22224.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  22225.     break 2
  22226.   fi
  22227. done
  22228. done
  22229.  
  22230.   test -z "$ac_cv_path_GTK_CONFIG" && ac_cv_path_GTK_CONFIG="no"
  22231.   ;;
  22232. esac
  22233. fi
  22234. GTK_CONFIG=$ac_cv_path_GTK_CONFIG
  22235.  
  22236. if test -n "$GTK_CONFIG"; then
  22237.   echo "$as_me:$LINENO: result: $GTK_CONFIG" >&5
  22238. echo "${ECHO_T}$GTK_CONFIG" >&6
  22239. else
  22240.   echo "$as_me:$LINENO: result: no" >&5
  22241. echo "${ECHO_T}no" >&6
  22242. fi
  22243.  
  22244.   fi
  22245.   if test "x${GTK_CONFIG}" != "xno"
  22246.   then
  22247.     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
  22248.     then
  22249.       { { echo "$as_me:$LINENO: error: Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-gtk." >&5
  22250. echo "$as_me: error: Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-gtk." >&2;}
  22251.    { (exit 1); exit 1; }; }
  22252.     fi
  22253.     if test "x${SYS}" != "xmingw32"; then
  22254.       CFLAGS_gtk="${CFLAGS_gtk} `${GTK_CONFIG} --cflags gtk gthread`"
  22255.       LDFLAGS_gtk="${LDFLAGS_gtk} `${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`"
  22256.     else
  22257.       CFLAGS_gtk="${CFLAGS_gtk} `${GTK_CONFIG} --cflags gtk`"
  22258.       LDFLAGS_gtk="${LDFLAGS_gtk} `${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`"
  22259.     fi
  22260.     # now look for the gtk.h header
  22261.     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
  22262.     ac_cv_gtk_headers=yes
  22263.  
  22264.  
  22265.  
  22266. for ac_header in gtk/gtk.h glib.h gdk/gdk.h
  22267. do
  22268. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  22269. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22270.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  22271. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22272. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22273.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22274. fi
  22275. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22276. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22277. else
  22278.   # Is the header compilable?
  22279. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  22280. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  22281. cat >conftest.$ac_ext <<_ACEOF
  22282. #line $LINENO "configure"
  22283. /* confdefs.h.  */
  22284. _ACEOF
  22285. cat confdefs.h >>conftest.$ac_ext
  22286. cat >>conftest.$ac_ext <<_ACEOF
  22287. /* end confdefs.h.  */
  22288. $ac_includes_default
  22289. #include <$ac_header>
  22290. _ACEOF
  22291. rm -f conftest.$ac_objext
  22292. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  22293.   (eval $ac_compile) 2>&5
  22294.   ac_status=$?
  22295.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22296.   (exit $ac_status); } &&
  22297.          { ac_try='test -s conftest.$ac_objext'
  22298.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  22299.   (eval $ac_try) 2>&5
  22300.   ac_status=$?
  22301.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22302.   (exit $ac_status); }; }; then
  22303.   ac_header_compiler=yes
  22304. else
  22305.   echo "$as_me: failed program was:" >&5
  22306. sed 's/^/| /' conftest.$ac_ext >&5
  22307.  
  22308. ac_header_compiler=no
  22309. fi
  22310. rm -f conftest.$ac_objext conftest.$ac_ext
  22311. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  22312. echo "${ECHO_T}$ac_header_compiler" >&6
  22313.  
  22314. # Is the header present?
  22315. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  22316. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  22317. cat >conftest.$ac_ext <<_ACEOF
  22318. #line $LINENO "configure"
  22319. /* confdefs.h.  */
  22320. _ACEOF
  22321. cat confdefs.h >>conftest.$ac_ext
  22322. cat >>conftest.$ac_ext <<_ACEOF
  22323. /* end confdefs.h.  */
  22324. #include <$ac_header>
  22325. _ACEOF
  22326. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  22327.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  22328.   ac_status=$?
  22329.   grep -v '^ *+' conftest.er1 >conftest.err
  22330.   rm -f conftest.er1
  22331.   cat conftest.err >&5
  22332.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22333.   (exit $ac_status); } >/dev/null; then
  22334.   if test -s conftest.err; then
  22335.     ac_cpp_err=$ac_c_preproc_warn_flag
  22336.   else
  22337.     ac_cpp_err=
  22338.   fi
  22339. else
  22340.   ac_cpp_err=yes
  22341. fi
  22342. if test -z "$ac_cpp_err"; then
  22343.   ac_header_preproc=yes
  22344. else
  22345.   echo "$as_me: failed program was:" >&5
  22346. sed 's/^/| /' conftest.$ac_ext >&5
  22347.  
  22348.   ac_header_preproc=no
  22349. fi
  22350. rm -f conftest.err conftest.$ac_ext
  22351. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  22352. echo "${ECHO_T}$ac_header_preproc" >&6
  22353.  
  22354. # So?  What about this header?
  22355. case $ac_header_compiler:$ac_header_preproc in
  22356.   yes:no )
  22357.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  22358. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  22359.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22360. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22361.     (
  22362.       cat <<\_ASBOX
  22363. ## ------------------------------------ ##
  22364. ## Report this to bug-autoconf@gnu.org. ##
  22365. ## ------------------------------------ ##
  22366. _ASBOX
  22367.     ) |
  22368.       sed "s/^/$as_me: WARNING:     /" >&2
  22369.     ;;
  22370.   no:yes )
  22371.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  22372. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  22373.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  22374. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  22375.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22376. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22377.     (
  22378.       cat <<\_ASBOX
  22379. ## ------------------------------------ ##
  22380. ## Report this to bug-autoconf@gnu.org. ##
  22381. ## ------------------------------------ ##
  22382. _ASBOX
  22383.     ) |
  22384.       sed "s/^/$as_me: WARNING:     /" >&2
  22385.     ;;
  22386. esac
  22387. echo "$as_me:$LINENO: checking for $ac_header" >&5
  22388. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22389. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22390.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22391. else
  22392.   eval "$as_ac_Header=$ac_header_preproc"
  22393. fi
  22394. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22395. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22396.  
  22397. fi
  22398. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  22399.   cat >>confdefs.h <<_ACEOF
  22400. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  22401. _ACEOF
  22402.  
  22403. else
  22404.  
  22405.       ac_cv_gtk_headers=no
  22406.       echo "Cannot find gtk development headers."
  22407.  
  22408. fi
  22409.  
  22410. done
  22411.  
  22412.     if test "x${ac_cv_gtk_headers}" = "xyes"
  22413.     then
  22414.       PLUGINS="${PLUGINS} gtk"
  22415.       if test "x${SYS}" != "xmingw32"; then
  22416.         NEED_GTK_MAIN=yes
  22417.       fi
  22418.       ALIASES="${ALIASES} gvlc"
  22419.     fi
  22420.     CPPFLAGS="${CPPFLAGS_save}"
  22421.   fi
  22422. fi
  22423.  
  22424. # Check whether --enable-gtk2 or --disable-gtk2 was given.
  22425. if test "${enable_gtk2+set}" = set; then
  22426.   enableval="$enable_gtk2"
  22427.  
  22428. fi;
  22429. if test "x${enable_gtk2}" = "xyes"
  22430. then
  22431.  
  22432.   succeeded=no
  22433.  
  22434.   if test -z "$PKG_CONFIG"; then
  22435.     # Extract the first word of "pkg-config", so it can be a program name with args.
  22436. set dummy pkg-config; ac_word=$2
  22437. echo "$as_me:$LINENO: checking for $ac_word" >&5
  22438. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  22439. if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
  22440.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22441. else
  22442.   case $PKG_CONFIG in
  22443.   [\\/]* | ?:[\\/]*)
  22444.   ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
  22445.   ;;
  22446.   *)
  22447.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  22448. for as_dir in $PATH
  22449. do
  22450.   IFS=$as_save_IFS
  22451.   test -z "$as_dir" && as_dir=.
  22452.   for ac_exec_ext in '' $ac_executable_extensions; do
  22453.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  22454.     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  22455.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  22456.     break 2
  22457.   fi
  22458. done
  22459. done
  22460.  
  22461.   test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
  22462.   ;;
  22463. esac
  22464. fi
  22465. PKG_CONFIG=$ac_cv_path_PKG_CONFIG
  22466.  
  22467. if test -n "$PKG_CONFIG"; then
  22468.   echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
  22469. echo "${ECHO_T}$PKG_CONFIG" >&6
  22470. else
  22471.   echo "$as_me:$LINENO: result: no" >&5
  22472. echo "${ECHO_T}no" >&6
  22473. fi
  22474.  
  22475.   fi
  22476.  
  22477.   if test "$PKG_CONFIG" = "no" ; then
  22478.      echo "*** The pkg-config script could not be found. Make sure it is"
  22479.      echo "*** in your path, or set the PKG_CONFIG environment variable"
  22480.      echo "*** to the full path to pkg-config."
  22481.      echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
  22482.   else
  22483.      PKG_CONFIG_MIN_VERSION=0.9.0
  22484.      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
  22485.         echo "$as_me:$LINENO: checking for gtk+-2.0 >= 2.0.0" >&5
  22486. echo $ECHO_N "checking for gtk+-2.0 >= 2.0.0... $ECHO_C" >&6
  22487.  
  22488.         if $PKG_CONFIG --exists "gtk+-2.0 >= 2.0.0, gthread-2.0" ; then
  22489.             echo "$as_me:$LINENO: result: yes" >&5
  22490. echo "${ECHO_T}yes" >&6
  22491.             succeeded=yes
  22492.  
  22493.             echo "$as_me:$LINENO: checking GTK2_CFLAGS" >&5
  22494. echo $ECHO_N "checking GTK2_CFLAGS... $ECHO_C" >&6
  22495.             GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.0.0, gthread-2.0"`
  22496.             echo "$as_me:$LINENO: result: $GTK2_CFLAGS" >&5
  22497. echo "${ECHO_T}$GTK2_CFLAGS" >&6
  22498.  
  22499.             echo "$as_me:$LINENO: checking GTK2_LIBS" >&5
  22500. echo $ECHO_N "checking GTK2_LIBS... $ECHO_C" >&6
  22501.             GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.0.0, gthread-2.0"`
  22502.             echo "$as_me:$LINENO: result: $GTK2_LIBS" >&5
  22503. echo "${ECHO_T}$GTK2_LIBS" >&6
  22504.         else
  22505.             GTK2_CFLAGS=""
  22506.             GTK2_LIBS=""
  22507.             ## If we have a custom action on failure, don't print errors, but
  22508.             ## do set a variable so people can do so.
  22509.             GTK2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 >= 2.0.0, gthread-2.0"`
  22510.             echo $GTK2_PKG_ERRORS
  22511.         fi
  22512.  
  22513.  
  22514.  
  22515.      else
  22516.         echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
  22517.         echo "*** See http://www.freedesktop.org/software/pkgconfig"
  22518.      fi
  22519.   fi
  22520.  
  22521.   if test $succeeded = yes; then
  22522.      :
  22523.   else
  22524.      { { echo "$as_me:$LINENO: error: Library requirements (gtk+-2.0 >= 2.0.0, gthread-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5
  22525. echo "$as_me: error: Library requirements (gtk+-2.0 >= 2.0.0, gthread-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;}
  22526.    { (exit 1); exit 1; }; }
  22527.   fi
  22528.  
  22529.   CFLAGS_gtk2="${CFLAGS_gtk2} ${GTK2_CFLAGS}"
  22530.   LDFLAGS_gtk2="${LDFLAGS_gtk2} ${GTK2_LIBS}"
  22531.   PLUGINS="${PLUGINS} gtk2"
  22532.   if test "x${SYS}" != "xmingw32"; then
  22533.     NEED_GTK2_MAIN=yes
  22534.   fi
  22535. fi
  22536.  
  22537. # Check whether --enable-familiar or --disable-familiar was given.
  22538. if test "${enable_familiar+set}" = set; then
  22539.   enableval="$enable_familiar"
  22540.  
  22541. fi;
  22542. if test "x${enable_familiar}" = "xyes"
  22543. then
  22544.   GTK_PATH="${PATH}"
  22545.  
  22546. # Check whether --with-gtk-config-path or --without-gtk-config-path was given.
  22547. if test "${with_gtk_config_path+set}" = set; then
  22548.   withval="$with_gtk_config_path"
  22549.    if test "x${with_gtk_config_path}" != "xno"
  22550.       then
  22551.         GTK_PATH="${with_gtk_config_path}:${PATH}"
  22552.       fi
  22553. fi;
  22554.   # look for gtk-config
  22555.   # Extract the first word of "gtk12-config", so it can be a program name with args.
  22556. set dummy gtk12-config; ac_word=$2
  22557. echo "$as_me:$LINENO: checking for $ac_word" >&5
  22558. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  22559. if test "${ac_cv_path_GTK12_CONFIG+set}" = set; then
  22560.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22561. else
  22562.   case $GTK12_CONFIG in
  22563.   [\\/]* | ?:[\\/]*)
  22564.   ac_cv_path_GTK12_CONFIG="$GTK12_CONFIG" # Let the user override the test with a path.
  22565.   ;;
  22566.   *)
  22567.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  22568. for as_dir in ${GTK_PATH}
  22569. do
  22570.   IFS=$as_save_IFS
  22571.   test -z "$as_dir" && as_dir=.
  22572.   for ac_exec_ext in '' $ac_executable_extensions; do
  22573.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  22574.     ac_cv_path_GTK12_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  22575.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  22576.     break 2
  22577.   fi
  22578. done
  22579. done
  22580.  
  22581.   test -z "$ac_cv_path_GTK12_CONFIG" && ac_cv_path_GTK12_CONFIG="no"
  22582.   ;;
  22583. esac
  22584. fi
  22585. GTK12_CONFIG=$ac_cv_path_GTK12_CONFIG
  22586.  
  22587. if test -n "$GTK12_CONFIG"; then
  22588.   echo "$as_me:$LINENO: result: $GTK12_CONFIG" >&5
  22589. echo "${ECHO_T}$GTK12_CONFIG" >&6
  22590. else
  22591.   echo "$as_me:$LINENO: result: no" >&5
  22592. echo "${ECHO_T}no" >&6
  22593. fi
  22594.  
  22595.   GTK_CONFIG=${GTK12_CONFIG}
  22596.   if test "x${GTK_CONFIG}" = "xno"
  22597.   then
  22598.     # Extract the first word of "gtk-config", so it can be a program name with args.
  22599. set dummy gtk-config; ac_word=$2
  22600. echo "$as_me:$LINENO: checking for $ac_word" >&5
  22601. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  22602. if test "${ac_cv_path_GTK_CONFIG+set}" = set; then
  22603.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22604. else
  22605.   case $GTK_CONFIG in
  22606.   [\\/]* | ?:[\\/]*)
  22607.   ac_cv_path_GTK_CONFIG="$GTK_CONFIG" # Let the user override the test with a path.
  22608.   ;;
  22609.   *)
  22610.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  22611. for as_dir in ${GTK_PATH}
  22612. do
  22613.   IFS=$as_save_IFS
  22614.   test -z "$as_dir" && as_dir=.
  22615.   for ac_exec_ext in '' $ac_executable_extensions; do
  22616.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  22617.     ac_cv_path_GTK_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  22618.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  22619.     break 2
  22620.   fi
  22621. done
  22622. done
  22623.  
  22624.   test -z "$ac_cv_path_GTK_CONFIG" && ac_cv_path_GTK_CONFIG="no"
  22625.   ;;
  22626. esac
  22627. fi
  22628. GTK_CONFIG=$ac_cv_path_GTK_CONFIG
  22629.  
  22630. if test -n "$GTK_CONFIG"; then
  22631.   echo "$as_me:$LINENO: result: $GTK_CONFIG" >&5
  22632. echo "${ECHO_T}$GTK_CONFIG" >&6
  22633. else
  22634.   echo "$as_me:$LINENO: result: no" >&5
  22635. echo "${ECHO_T}no" >&6
  22636. fi
  22637.  
  22638.   fi
  22639.   # check for cross-compiling
  22640.   GTK_PREFIX=
  22641.  
  22642. # Check whether --with-gtk-prefix or --without-gtk-prefix was given.
  22643. if test "${with_gtk_prefix+set}" = set; then
  22644.   withval="$with_gtk_prefix"
  22645.  
  22646. fi;
  22647.   if test "x${with_gtk_prefix}" != "xno" -a "x${with_gtk_prefix}" != "x"
  22648.   then
  22649.     GTK_PREFIX="--prefix=$with_gtk_prefix"
  22650.   fi
  22651.   if test "x${GTK_CONFIG}" != "xno"
  22652.   then
  22653.     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
  22654.     then
  22655.       { { echo "$as_me:$LINENO: error: Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-familiar." >&5
  22656. echo "$as_me: error: Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-familiar." >&2;}
  22657.    { (exit 1); exit 1; }; }
  22658.     fi
  22659.     CFLAGS_familiar="${CFLAGS_familiar} `${GTK_CONFIG} ${GTK_PREFIX} --cflags gtk gthread`"
  22660.     LDFLAGS_familiar="${LDFLAGS_familiar} `${GTK_CONFIG} ${GTK_PREFIX} --libs gtk gthread | sed 's,-rdynamic,,'`"
  22661.     # now look for the gtk.h header
  22662.     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_familiar}"
  22663.     ac_cv_gtk_headers=yes
  22664.  
  22665.  
  22666.  
  22667. for ac_header in gtk/gtk.h glib.h gdk/gdk.h
  22668. do
  22669. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  22670. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22671.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  22672. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22673. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22674.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22675. fi
  22676. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22677. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22678. else
  22679.   # Is the header compilable?
  22680. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  22681. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  22682. cat >conftest.$ac_ext <<_ACEOF
  22683. #line $LINENO "configure"
  22684. /* confdefs.h.  */
  22685. _ACEOF
  22686. cat confdefs.h >>conftest.$ac_ext
  22687. cat >>conftest.$ac_ext <<_ACEOF
  22688. /* end confdefs.h.  */
  22689. $ac_includes_default
  22690. #include <$ac_header>
  22691. _ACEOF
  22692. rm -f conftest.$ac_objext
  22693. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  22694.   (eval $ac_compile) 2>&5
  22695.   ac_status=$?
  22696.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22697.   (exit $ac_status); } &&
  22698.          { ac_try='test -s conftest.$ac_objext'
  22699.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  22700.   (eval $ac_try) 2>&5
  22701.   ac_status=$?
  22702.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22703.   (exit $ac_status); }; }; then
  22704.   ac_header_compiler=yes
  22705. else
  22706.   echo "$as_me: failed program was:" >&5
  22707. sed 's/^/| /' conftest.$ac_ext >&5
  22708.  
  22709. ac_header_compiler=no
  22710. fi
  22711. rm -f conftest.$ac_objext conftest.$ac_ext
  22712. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  22713. echo "${ECHO_T}$ac_header_compiler" >&6
  22714.  
  22715. # Is the header present?
  22716. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  22717. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  22718. cat >conftest.$ac_ext <<_ACEOF
  22719. #line $LINENO "configure"
  22720. /* confdefs.h.  */
  22721. _ACEOF
  22722. cat confdefs.h >>conftest.$ac_ext
  22723. cat >>conftest.$ac_ext <<_ACEOF
  22724. /* end confdefs.h.  */
  22725. #include <$ac_header>
  22726. _ACEOF
  22727. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  22728.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  22729.   ac_status=$?
  22730.   grep -v '^ *+' conftest.er1 >conftest.err
  22731.   rm -f conftest.er1
  22732.   cat conftest.err >&5
  22733.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22734.   (exit $ac_status); } >/dev/null; then
  22735.   if test -s conftest.err; then
  22736.     ac_cpp_err=$ac_c_preproc_warn_flag
  22737.   else
  22738.     ac_cpp_err=
  22739.   fi
  22740. else
  22741.   ac_cpp_err=yes
  22742. fi
  22743. if test -z "$ac_cpp_err"; then
  22744.   ac_header_preproc=yes
  22745. else
  22746.   echo "$as_me: failed program was:" >&5
  22747. sed 's/^/| /' conftest.$ac_ext >&5
  22748.  
  22749.   ac_header_preproc=no
  22750. fi
  22751. rm -f conftest.err conftest.$ac_ext
  22752. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  22753. echo "${ECHO_T}$ac_header_preproc" >&6
  22754.  
  22755. # So?  What about this header?
  22756. case $ac_header_compiler:$ac_header_preproc in
  22757.   yes:no )
  22758.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  22759. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  22760.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22761. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22762.     (
  22763.       cat <<\_ASBOX
  22764. ## ------------------------------------ ##
  22765. ## Report this to bug-autoconf@gnu.org. ##
  22766. ## ------------------------------------ ##
  22767. _ASBOX
  22768.     ) |
  22769.       sed "s/^/$as_me: WARNING:     /" >&2
  22770.     ;;
  22771.   no:yes )
  22772.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  22773. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  22774.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  22775. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  22776.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22777. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22778.     (
  22779.       cat <<\_ASBOX
  22780. ## ------------------------------------ ##
  22781. ## Report this to bug-autoconf@gnu.org. ##
  22782. ## ------------------------------------ ##
  22783. _ASBOX
  22784.     ) |
  22785.       sed "s/^/$as_me: WARNING:     /" >&2
  22786.     ;;
  22787. esac
  22788. echo "$as_me:$LINENO: checking for $ac_header" >&5
  22789. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22790. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22791.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22792. else
  22793.   eval "$as_ac_Header=$ac_header_preproc"
  22794. fi
  22795. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22796. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22797.  
  22798. fi
  22799. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  22800.   cat >>confdefs.h <<_ACEOF
  22801. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  22802. _ACEOF
  22803.  
  22804. else
  22805.  
  22806.       ac_cv_gtk_headers=no
  22807.       echo "Cannot find gtk development headers."
  22808.  
  22809. fi
  22810.  
  22811. done
  22812.  
  22813.     if test "x${ac_cv_gtk_headers}" = "xyes"
  22814.     then
  22815.       PLUGINS="${PLUGINS} familiar"
  22816.     fi
  22817.     CPPFLAGS="${CPPFLAGS_save}"
  22818.  
  22819.     # now look for gpe support
  22820.  
  22821. # Check whether --with-gpe-prefix or --without-gpe-prefix was given.
  22822. if test "${with_gpe_prefix+set}" = set; then
  22823.   withval="$with_gpe_prefix"
  22824.  
  22825. fi;
  22826.     if test "x$with_gpe_prefix" != "xno"  -a "x$with_gpe_prefix" != "x"
  22827.     then
  22828.       CFLAGS_gpe="-I$with_gpe_prefix/include"
  22829.       LDFLAGS_gpe="-lXi -lgdk_pixbuf -L$with_gpe_prefix/lib -lgpewidget"
  22830.       # now look for gpe/init.h header file
  22831.       CFLAGS_save=$CFLAGS
  22832.       LDFLAGS_save=$LDFLAGS
  22833.       CFLAGS="${CFLAGS_familiar} ${CFLAGS_gpe}"
  22834.       LDFLAGS="${LDFLAGS_familiar} ${LDFLAGS_gpe}"
  22835.       CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_familiar} ${CFLAGS_gpe}"
  22836.       ac_cv_gpe_headers=yes
  22837.  
  22838. for ac_header in gpe/init.h
  22839. do
  22840. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  22841. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22842.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  22843. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22844. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22845.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22846. fi
  22847. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22848. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22849. else
  22850.   # Is the header compilable?
  22851. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  22852. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  22853. cat >conftest.$ac_ext <<_ACEOF
  22854. #line $LINENO "configure"
  22855. /* confdefs.h.  */
  22856. _ACEOF
  22857. cat confdefs.h >>conftest.$ac_ext
  22858. cat >>conftest.$ac_ext <<_ACEOF
  22859. /* end confdefs.h.  */
  22860. $ac_includes_default
  22861. #include <$ac_header>
  22862. _ACEOF
  22863. rm -f conftest.$ac_objext
  22864. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  22865.   (eval $ac_compile) 2>&5
  22866.   ac_status=$?
  22867.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22868.   (exit $ac_status); } &&
  22869.          { ac_try='test -s conftest.$ac_objext'
  22870.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  22871.   (eval $ac_try) 2>&5
  22872.   ac_status=$?
  22873.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22874.   (exit $ac_status); }; }; then
  22875.   ac_header_compiler=yes
  22876. else
  22877.   echo "$as_me: failed program was:" >&5
  22878. sed 's/^/| /' conftest.$ac_ext >&5
  22879.  
  22880. ac_header_compiler=no
  22881. fi
  22882. rm -f conftest.$ac_objext conftest.$ac_ext
  22883. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  22884. echo "${ECHO_T}$ac_header_compiler" >&6
  22885.  
  22886. # Is the header present?
  22887. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  22888. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  22889. cat >conftest.$ac_ext <<_ACEOF
  22890. #line $LINENO "configure"
  22891. /* confdefs.h.  */
  22892. _ACEOF
  22893. cat confdefs.h >>conftest.$ac_ext
  22894. cat >>conftest.$ac_ext <<_ACEOF
  22895. /* end confdefs.h.  */
  22896. #include <$ac_header>
  22897. _ACEOF
  22898. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  22899.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  22900.   ac_status=$?
  22901.   grep -v '^ *+' conftest.er1 >conftest.err
  22902.   rm -f conftest.er1
  22903.   cat conftest.err >&5
  22904.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  22905.   (exit $ac_status); } >/dev/null; then
  22906.   if test -s conftest.err; then
  22907.     ac_cpp_err=$ac_c_preproc_warn_flag
  22908.   else
  22909.     ac_cpp_err=
  22910.   fi
  22911. else
  22912.   ac_cpp_err=yes
  22913. fi
  22914. if test -z "$ac_cpp_err"; then
  22915.   ac_header_preproc=yes
  22916. else
  22917.   echo "$as_me: failed program was:" >&5
  22918. sed 's/^/| /' conftest.$ac_ext >&5
  22919.  
  22920.   ac_header_preproc=no
  22921. fi
  22922. rm -f conftest.err conftest.$ac_ext
  22923. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  22924. echo "${ECHO_T}$ac_header_preproc" >&6
  22925.  
  22926. # So?  What about this header?
  22927. case $ac_header_compiler:$ac_header_preproc in
  22928.   yes:no )
  22929.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  22930. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  22931.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22932. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22933.     (
  22934.       cat <<\_ASBOX
  22935. ## ------------------------------------ ##
  22936. ## Report this to bug-autoconf@gnu.org. ##
  22937. ## ------------------------------------ ##
  22938. _ASBOX
  22939.     ) |
  22940.       sed "s/^/$as_me: WARNING:     /" >&2
  22941.     ;;
  22942.   no:yes )
  22943.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  22944. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  22945.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  22946. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  22947.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  22948. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  22949.     (
  22950.       cat <<\_ASBOX
  22951. ## ------------------------------------ ##
  22952. ## Report this to bug-autoconf@gnu.org. ##
  22953. ## ------------------------------------ ##
  22954. _ASBOX
  22955.     ) |
  22956.       sed "s/^/$as_me: WARNING:     /" >&2
  22957.     ;;
  22958. esac
  22959. echo "$as_me:$LINENO: checking for $ac_header" >&5
  22960. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  22961. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  22962.   echo $ECHO_N "(cached) $ECHO_C" >&6
  22963. else
  22964.   eval "$as_ac_Header=$ac_header_preproc"
  22965. fi
  22966. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  22967. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  22968.  
  22969. fi
  22970. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  22971.   cat >>confdefs.h <<_ACEOF
  22972. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  22973. _ACEOF
  22974.  
  22975. else
  22976.    ac_cv_gpe_headers=no
  22977.           { { echo "$as_me:$LINENO: error: Cannot find development headers for libgpewidget..." >&5
  22978. echo "$as_me: error: Cannot find development headers for libgpewidget..." >&2;}
  22979.    { (exit 1); exit 1; }; }
  22980. fi
  22981.  
  22982. done
  22983.  
  22984.       CFLAGS=$CFLAGS_save
  22985.       LDFLAGS=$LDFLAG_save
  22986.       if test "x${ac_cv_gpe_headers}" = "xyes"
  22987.       then
  22988.         CFLAGS_familiar="${CFLAGS_familiar} ${CFLAGS_gpe}"
  22989.         LDFLAGS_familiar="${LDFLAGS_familiar} ${LDFLAGS_gpe}"
  22990.       fi
  22991.     else
  22992.       NEED_GTK_MAIN=yes
  22993.     fi # end gpe support
  22994.   fi # end gtk+ support
  22995. fi
  22996.  
  22997. # Check whether --enable-gnome or --disable-gnome was given.
  22998. if test "${enable_gnome+set}" = set; then
  22999.   enableval="$enable_gnome"
  23000.   if test "x${enable_gnome}" = "xyes"; then
  23001.     # look for gnome-config
  23002.     # Extract the first word of "gnome-config", so it can be a program name with args.
  23003. set dummy gnome-config; ac_word=$2
  23004. echo "$as_me:$LINENO: checking for $ac_word" >&5
  23005. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  23006. if test "${ac_cv_path_GNOME_CONFIG+set}" = set; then
  23007.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23008. else
  23009.   case $GNOME_CONFIG in
  23010.   [\\/]* | ?:[\\/]*)
  23011.   ac_cv_path_GNOME_CONFIG="$GNOME_CONFIG" # Let the user override the test with a path.
  23012.   ;;
  23013.   *)
  23014.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  23015. for as_dir in $PATH
  23016. do
  23017.   IFS=$as_save_IFS
  23018.   test -z "$as_dir" && as_dir=.
  23019.   for ac_exec_ext in '' $ac_executable_extensions; do
  23020.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  23021.     ac_cv_path_GNOME_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  23022.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  23023.     break 2
  23024.   fi
  23025. done
  23026. done
  23027.  
  23028.   test -z "$ac_cv_path_GNOME_CONFIG" && ac_cv_path_GNOME_CONFIG="no"
  23029.   ;;
  23030. esac
  23031. fi
  23032. GNOME_CONFIG=$ac_cv_path_GNOME_CONFIG
  23033.  
  23034. if test -n "$GNOME_CONFIG"; then
  23035.   echo "$as_me:$LINENO: result: $GNOME_CONFIG" >&5
  23036. echo "${ECHO_T}$GNOME_CONFIG" >&6
  23037. else
  23038.   echo "$as_me:$LINENO: result: no" >&5
  23039. echo "${ECHO_T}no" >&6
  23040. fi
  23041.  
  23042.     if test -x ${GNOME_CONFIG}
  23043.     then
  23044.        CFLAGS_gnome="${CFLAGS_gnome} `${GNOME_CONFIG} --cflags gtk gnomeui`"
  23045.        LDFLAGS_gnome="${LDFLAGS_gnome} `${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`"
  23046.     fi
  23047.     # now look for the gnome.h header
  23048.     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
  23049.  
  23050. for ac_header in gnome.h
  23051. do
  23052. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  23053. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23054.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  23055. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  23056. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23057.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23058. fi
  23059. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  23060. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  23061. else
  23062.   # Is the header compilable?
  23063. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  23064. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  23065. cat >conftest.$ac_ext <<_ACEOF
  23066. #line $LINENO "configure"
  23067. /* confdefs.h.  */
  23068. _ACEOF
  23069. cat confdefs.h >>conftest.$ac_ext
  23070. cat >>conftest.$ac_ext <<_ACEOF
  23071. /* end confdefs.h.  */
  23072. $ac_includes_default
  23073. #include <$ac_header>
  23074. _ACEOF
  23075. rm -f conftest.$ac_objext
  23076. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  23077.   (eval $ac_compile) 2>&5
  23078.   ac_status=$?
  23079.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23080.   (exit $ac_status); } &&
  23081.          { ac_try='test -s conftest.$ac_objext'
  23082.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23083.   (eval $ac_try) 2>&5
  23084.   ac_status=$?
  23085.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23086.   (exit $ac_status); }; }; then
  23087.   ac_header_compiler=yes
  23088. else
  23089.   echo "$as_me: failed program was:" >&5
  23090. sed 's/^/| /' conftest.$ac_ext >&5
  23091.  
  23092. ac_header_compiler=no
  23093. fi
  23094. rm -f conftest.$ac_objext conftest.$ac_ext
  23095. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  23096. echo "${ECHO_T}$ac_header_compiler" >&6
  23097.  
  23098. # Is the header present?
  23099. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  23100. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  23101. cat >conftest.$ac_ext <<_ACEOF
  23102. #line $LINENO "configure"
  23103. /* confdefs.h.  */
  23104. _ACEOF
  23105. cat confdefs.h >>conftest.$ac_ext
  23106. cat >>conftest.$ac_ext <<_ACEOF
  23107. /* end confdefs.h.  */
  23108. #include <$ac_header>
  23109. _ACEOF
  23110. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  23111.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  23112.   ac_status=$?
  23113.   grep -v '^ *+' conftest.er1 >conftest.err
  23114.   rm -f conftest.er1
  23115.   cat conftest.err >&5
  23116.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23117.   (exit $ac_status); } >/dev/null; then
  23118.   if test -s conftest.err; then
  23119.     ac_cpp_err=$ac_c_preproc_warn_flag
  23120.   else
  23121.     ac_cpp_err=
  23122.   fi
  23123. else
  23124.   ac_cpp_err=yes
  23125. fi
  23126. if test -z "$ac_cpp_err"; then
  23127.   ac_header_preproc=yes
  23128. else
  23129.   echo "$as_me: failed program was:" >&5
  23130. sed 's/^/| /' conftest.$ac_ext >&5
  23131.  
  23132.   ac_header_preproc=no
  23133. fi
  23134. rm -f conftest.err conftest.$ac_ext
  23135. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  23136. echo "${ECHO_T}$ac_header_preproc" >&6
  23137.  
  23138. # So?  What about this header?
  23139. case $ac_header_compiler:$ac_header_preproc in
  23140.   yes:no )
  23141.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  23142. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  23143.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  23144. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  23145.     (
  23146.       cat <<\_ASBOX
  23147. ## ------------------------------------ ##
  23148. ## Report this to bug-autoconf@gnu.org. ##
  23149. ## ------------------------------------ ##
  23150. _ASBOX
  23151.     ) |
  23152.       sed "s/^/$as_me: WARNING:     /" >&2
  23153.     ;;
  23154.   no:yes )
  23155.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  23156. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  23157.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  23158. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  23159.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  23160. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  23161.     (
  23162.       cat <<\_ASBOX
  23163. ## ------------------------------------ ##
  23164. ## Report this to bug-autoconf@gnu.org. ##
  23165. ## ------------------------------------ ##
  23166. _ASBOX
  23167.     ) |
  23168.       sed "s/^/$as_me: WARNING:     /" >&2
  23169.     ;;
  23170. esac
  23171. echo "$as_me:$LINENO: checking for $ac_header" >&5
  23172. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  23173. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23174.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23175. else
  23176.   eval "$as_ac_Header=$ac_header_preproc"
  23177. fi
  23178. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  23179. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  23180.  
  23181. fi
  23182. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  23183.   cat >>confdefs.h <<_ACEOF
  23184. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  23185. _ACEOF
  23186.  
  23187.       PLUGINS="${PLUGINS} gnome"
  23188.       NEED_GTK_MAIN=yes
  23189.       NEED_GNOME_MAIN=yes
  23190.       ALIASES="${ALIASES} gnome-vlc"
  23191.             echo "$as_me:$LINENO: checking for strndup in gnome.h" >&5
  23192. echo $ECHO_N "checking for strndup in gnome.h... $ECHO_C" >&6
  23193.       cat >conftest.$ac_ext <<_ACEOF
  23194. #line $LINENO "configure"
  23195. /* confdefs.h.  */
  23196. _ACEOF
  23197. cat confdefs.h >>conftest.$ac_ext
  23198. cat >>conftest.$ac_ext <<_ACEOF
  23199. /* end confdefs.h.  */
  23200. #include <gnome.h>
  23201.  
  23202. _ACEOF
  23203. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  23204.   $EGREP "strndup" >/dev/null 2>&1; then
  23205.  
  23206.         echo "$as_me:$LINENO: result: yes" >&5
  23207. echo "${ECHO_T}yes" >&6
  23208.  
  23209. cat >>confdefs.h <<\_ACEOF
  23210. #define STRNDUP_IN_GNOME_H 1
  23211. _ACEOF
  23212.  
  23213. else
  23214.  
  23215.         echo "$as_me:$LINENO: result: no" >&5
  23216. echo "${ECHO_T}no" >&6
  23217. fi
  23218. rm -f conftest*
  23219.  
  23220.  
  23221. else
  23222.  
  23223.       { { echo "$as_me:$LINENO: error: Can't find gnome headers. Please install the gnome
  23224. developement tools or remove the --enable-gnome option" >&5
  23225. echo "$as_me: error: Can't find gnome headers. Please install the gnome
  23226. developement tools or remove the --enable-gnome option" >&2;}
  23227.    { (exit 1); exit 1; }; }
  23228.  
  23229. fi
  23230.  
  23231. done
  23232.  
  23233.     CPPFLAGS="${CPPFLAGS_save}"
  23234.   fi
  23235. fi;
  23236.  
  23237. # Check whether --enable-gnome2 or --disable-gnome2 was given.
  23238. if test "${enable_gnome2+set}" = set; then
  23239.   enableval="$enable_gnome2"
  23240.  
  23241. fi;
  23242. if test "x${enable_gnome2}" = "xyes"
  23243. then
  23244.  
  23245.   succeeded=no
  23246.  
  23247.   if test -z "$PKG_CONFIG"; then
  23248.     # Extract the first word of "pkg-config", so it can be a program name with args.
  23249. set dummy pkg-config; ac_word=$2
  23250. echo "$as_me:$LINENO: checking for $ac_word" >&5
  23251. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  23252. if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
  23253.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23254. else
  23255.   case $PKG_CONFIG in
  23256.   [\\/]* | ?:[\\/]*)
  23257.   ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
  23258.   ;;
  23259.   *)
  23260.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  23261. for as_dir in $PATH
  23262. do
  23263.   IFS=$as_save_IFS
  23264.   test -z "$as_dir" && as_dir=.
  23265.   for ac_exec_ext in '' $ac_executable_extensions; do
  23266.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  23267.     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  23268.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  23269.     break 2
  23270.   fi
  23271. done
  23272. done
  23273.  
  23274.   test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
  23275.   ;;
  23276. esac
  23277. fi
  23278. PKG_CONFIG=$ac_cv_path_PKG_CONFIG
  23279.  
  23280. if test -n "$PKG_CONFIG"; then
  23281.   echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
  23282. echo "${ECHO_T}$PKG_CONFIG" >&6
  23283. else
  23284.   echo "$as_me:$LINENO: result: no" >&5
  23285. echo "${ECHO_T}no" >&6
  23286. fi
  23287.  
  23288.   fi
  23289.  
  23290.   if test "$PKG_CONFIG" = "no" ; then
  23291.      echo "*** The pkg-config script could not be found. Make sure it is"
  23292.      echo "*** in your path, or set the PKG_CONFIG environment variable"
  23293.      echo "*** to the full path to pkg-config."
  23294.      echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
  23295.   else
  23296.      PKG_CONFIG_MIN_VERSION=0.9.0
  23297.      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
  23298.         echo "$as_me:$LINENO: checking for libgnomeui-2.0" >&5
  23299. echo $ECHO_N "checking for libgnomeui-2.0... $ECHO_C" >&6
  23300.  
  23301.         if $PKG_CONFIG --exists "libgnomeui-2.0" ; then
  23302.             echo "$as_me:$LINENO: result: yes" >&5
  23303. echo "${ECHO_T}yes" >&6
  23304.             succeeded=yes
  23305.  
  23306.             echo "$as_me:$LINENO: checking GNOME2_CFLAGS" >&5
  23307. echo $ECHO_N "checking GNOME2_CFLAGS... $ECHO_C" >&6
  23308.             GNOME2_CFLAGS=`$PKG_CONFIG --cflags "libgnomeui-2.0"`
  23309.             echo "$as_me:$LINENO: result: $GNOME2_CFLAGS" >&5
  23310. echo "${ECHO_T}$GNOME2_CFLAGS" >&6
  23311.  
  23312.             echo "$as_me:$LINENO: checking GNOME2_LIBS" >&5
  23313. echo $ECHO_N "checking GNOME2_LIBS... $ECHO_C" >&6
  23314.             GNOME2_LIBS=`$PKG_CONFIG --libs "libgnomeui-2.0"`
  23315.             echo "$as_me:$LINENO: result: $GNOME2_LIBS" >&5
  23316. echo "${ECHO_T}$GNOME2_LIBS" >&6
  23317.         else
  23318.             GNOME2_CFLAGS=""
  23319.             GNOME2_LIBS=""
  23320.             ## If we have a custom action on failure, don't print errors, but
  23321.             ## do set a variable so people can do so.
  23322.             GNOME2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgnomeui-2.0"`
  23323.             echo $GNOME2_PKG_ERRORS
  23324.         fi
  23325.  
  23326.  
  23327.  
  23328.      else
  23329.         echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
  23330.         echo "*** See http://www.freedesktop.org/software/pkgconfig"
  23331.      fi
  23332.   fi
  23333.  
  23334.   if test $succeeded = yes; then
  23335.      :
  23336.   else
  23337.      { { echo "$as_me:$LINENO: error: Library requirements (libgnomeui-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5
  23338. echo "$as_me: error: Library requirements (libgnomeui-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;}
  23339.    { (exit 1); exit 1; }; }
  23340.   fi
  23341.  
  23342.   CFLAGS_gnome2="${CFLAGS_gnome2} ${GNOME2_CFLAGS}"
  23343.   LDFLAGS_gnome2="${LDFLAGS_gnome2} ${GNOME2_LIBS}"
  23344.   PLUGINS="${PLUGINS} gnome2"
  23345.   if test "x${SYS}" != "xmingw32"; then
  23346.     NEED_GNOME2_MAIN=yes
  23347.   fi
  23348. fi
  23349.  
  23350. # Check whether --enable-wxwindows or --disable-wxwindows was given.
  23351. if test "${enable_wxwindows+set}" = set; then
  23352.   enableval="$enable_wxwindows"
  23353.  
  23354. fi;
  23355. if test "x${enable_wxwindows}" != "xno"
  23356. then
  23357.   WXWINDOWS_PATH="${PATH}"
  23358.  
  23359. # Check whether --with-wx-config-path or --without-wx-config-path was given.
  23360. if test "${with_wx_config_path+set}" = set; then
  23361.   withval="$with_wx_config_path"
  23362.    if test "x${with_wx_config_path}" != "xno"
  23363.       then
  23364.         WXWINDOWS_PATH="${with_wx_config_path}:${PATH}"
  23365.       fi
  23366. fi;
  23367.   # look for wx-config
  23368.   # Extract the first word of "wx-config", so it can be a program name with args.
  23369. set dummy wx-config; ac_word=$2
  23370. echo "$as_me:$LINENO: checking for $ac_word" >&5
  23371. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  23372. if test "${ac_cv_path_WX_CONFIG+set}" = set; then
  23373.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23374. else
  23375.   case $WX_CONFIG in
  23376.   [\\/]* | ?:[\\/]*)
  23377.   ac_cv_path_WX_CONFIG="$WX_CONFIG" # Let the user override the test with a path.
  23378.   ;;
  23379.   *)
  23380.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  23381. for as_dir in ${WXWINDOWS_PATH}
  23382. do
  23383.   IFS=$as_save_IFS
  23384.   test -z "$as_dir" && as_dir=.
  23385.   for ac_exec_ext in '' $ac_executable_extensions; do
  23386.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  23387.     ac_cv_path_WX_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  23388.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  23389.     break 2
  23390.   fi
  23391. done
  23392. done
  23393.  
  23394.   test -z "$ac_cv_path_WX_CONFIG" && ac_cv_path_WX_CONFIG="no"
  23395.   ;;
  23396. esac
  23397. fi
  23398. WX_CONFIG=$ac_cv_path_WX_CONFIG
  23399.  
  23400. if test -n "$WX_CONFIG"; then
  23401.   echo "$as_me:$LINENO: result: $WX_CONFIG" >&5
  23402. echo "${ECHO_T}$WX_CONFIG" >&6
  23403. else
  23404.   echo "$as_me:$LINENO: result: no" >&5
  23405. echo "${ECHO_T}no" >&6
  23406. fi
  23407.  
  23408.   if test "x${WX_CONFIG}" != "xno"
  23409.   then
  23410.     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
  23411.     then
  23412.       { { echo "$as_me:$LINENO: error: Your development package for wxWindows is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwindows." >&5
  23413. echo "$as_me: error: Your development package for wxWindows is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwindows." >&2;}
  23414.    { (exit 1); exit 1; }; }
  23415.     fi
  23416.     CXXFLAGS_wxwindows="${CXXFLAGS_wxwindows} `${WX_CONFIG} --cxxflags`"
  23417.     LDFLAGS_wxwindows="${LDFLAGS_wxwindows} `${WX_CONFIG} --libs`"
  23418.     # now look for the wxprec.h header
  23419.     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwindows}"
  23420.     ac_cv_wx_headers=yes
  23421.  
  23422. for ac_header in wx/wxprec.h
  23423. do
  23424. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  23425. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23426.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  23427. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  23428. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23429.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23430. fi
  23431. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  23432. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  23433. else
  23434.   # Is the header compilable?
  23435. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  23436. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  23437. cat >conftest.$ac_ext <<_ACEOF
  23438. #line $LINENO "configure"
  23439. /* confdefs.h.  */
  23440. _ACEOF
  23441. cat confdefs.h >>conftest.$ac_ext
  23442. cat >>conftest.$ac_ext <<_ACEOF
  23443. /* end confdefs.h.  */
  23444. $ac_includes_default
  23445. #include <$ac_header>
  23446. _ACEOF
  23447. rm -f conftest.$ac_objext
  23448. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  23449.   (eval $ac_compile) 2>&5
  23450.   ac_status=$?
  23451.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23452.   (exit $ac_status); } &&
  23453.          { ac_try='test -s conftest.$ac_objext'
  23454.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23455.   (eval $ac_try) 2>&5
  23456.   ac_status=$?
  23457.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23458.   (exit $ac_status); }; }; then
  23459.   ac_header_compiler=yes
  23460. else
  23461.   echo "$as_me: failed program was:" >&5
  23462. sed 's/^/| /' conftest.$ac_ext >&5
  23463.  
  23464. ac_header_compiler=no
  23465. fi
  23466. rm -f conftest.$ac_objext conftest.$ac_ext
  23467. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  23468. echo "${ECHO_T}$ac_header_compiler" >&6
  23469.  
  23470. # Is the header present?
  23471. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  23472. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  23473. cat >conftest.$ac_ext <<_ACEOF
  23474. #line $LINENO "configure"
  23475. /* confdefs.h.  */
  23476. _ACEOF
  23477. cat confdefs.h >>conftest.$ac_ext
  23478. cat >>conftest.$ac_ext <<_ACEOF
  23479. /* end confdefs.h.  */
  23480. #include <$ac_header>
  23481. _ACEOF
  23482. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  23483.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  23484.   ac_status=$?
  23485.   grep -v '^ *+' conftest.er1 >conftest.err
  23486.   rm -f conftest.er1
  23487.   cat conftest.err >&5
  23488.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23489.   (exit $ac_status); } >/dev/null; then
  23490.   if test -s conftest.err; then
  23491.     ac_cpp_err=$ac_c_preproc_warn_flag
  23492.   else
  23493.     ac_cpp_err=
  23494.   fi
  23495. else
  23496.   ac_cpp_err=yes
  23497. fi
  23498. if test -z "$ac_cpp_err"; then
  23499.   ac_header_preproc=yes
  23500. else
  23501.   echo "$as_me: failed program was:" >&5
  23502. sed 's/^/| /' conftest.$ac_ext >&5
  23503.  
  23504.   ac_header_preproc=no
  23505. fi
  23506. rm -f conftest.err conftest.$ac_ext
  23507. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  23508. echo "${ECHO_T}$ac_header_preproc" >&6
  23509.  
  23510. # So?  What about this header?
  23511. case $ac_header_compiler:$ac_header_preproc in
  23512.   yes:no )
  23513.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  23514. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  23515.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  23516. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  23517.     (
  23518.       cat <<\_ASBOX
  23519. ## ------------------------------------ ##
  23520. ## Report this to bug-autoconf@gnu.org. ##
  23521. ## ------------------------------------ ##
  23522. _ASBOX
  23523.     ) |
  23524.       sed "s/^/$as_me: WARNING:     /" >&2
  23525.     ;;
  23526.   no:yes )
  23527.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  23528. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  23529.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  23530. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  23531.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  23532. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  23533.     (
  23534.       cat <<\_ASBOX
  23535. ## ------------------------------------ ##
  23536. ## Report this to bug-autoconf@gnu.org. ##
  23537. ## ------------------------------------ ##
  23538. _ASBOX
  23539.     ) |
  23540.       sed "s/^/$as_me: WARNING:     /" >&2
  23541.     ;;
  23542. esac
  23543. echo "$as_me:$LINENO: checking for $ac_header" >&5
  23544. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  23545. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23546.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23547. else
  23548.   eval "$as_ac_Header=$ac_header_preproc"
  23549. fi
  23550. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  23551. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  23552.  
  23553. fi
  23554. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  23555.   cat >>confdefs.h <<_ACEOF
  23556. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  23557. _ACEOF
  23558.  
  23559. else
  23560.  
  23561.       ac_cv_wx_headers=no
  23562.       echo "Cannot find wxWindows development headers."
  23563.  
  23564. fi
  23565.  
  23566. done
  23567.  
  23568.     if test "x${ac_cv_wx_headers}" = "xyes"
  23569.     then
  23570.       PLUGINS="${PLUGINS} wxwindows"
  23571.       ALIASES="${ALIASES} wxvlc"
  23572.     fi
  23573.     CPPFLAGS="${CPPFLAGS_save}"
  23574.   fi
  23575. fi
  23576.  
  23577. # Check whether --enable-qt or --disable-qt was given.
  23578. if test "${enable_qt+set}" = set; then
  23579.   enableval="$enable_qt"
  23580.   if test "x${enable_qt}" = "xyes"; then
  23581.      PLUGINS="${PLUGINS} qt"
  23582.      ALIASES="${ALIASES} qvlc"
  23583.      LDFLAGS_qt="${LDFLAGS_qt} -L${QTDIR}/lib"
  23584.      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
  23585.      echo "$as_me:$LINENO: checking for main in -lqt-mt" >&5
  23586. echo $ECHO_N "checking for main in -lqt-mt... $ECHO_C" >&6
  23587. if test "${ac_cv_lib_qt_mt_main+set}" = set; then
  23588.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23589. else
  23590.   ac_check_lib_save_LIBS=$LIBS
  23591. LIBS="-lqt-mt  $LIBS"
  23592. cat >conftest.$ac_ext <<_ACEOF
  23593. #line $LINENO "configure"
  23594. /* confdefs.h.  */
  23595. _ACEOF
  23596. cat confdefs.h >>conftest.$ac_ext
  23597. cat >>conftest.$ac_ext <<_ACEOF
  23598. /* end confdefs.h.  */
  23599.  
  23600.  
  23601. int
  23602. main ()
  23603. {
  23604. main ();
  23605.   ;
  23606.   return 0;
  23607. }
  23608. _ACEOF
  23609. rm -f conftest.$ac_objext conftest$ac_exeext
  23610. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  23611.   (eval $ac_link) 2>&5
  23612.   ac_status=$?
  23613.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23614.   (exit $ac_status); } &&
  23615.          { ac_try='test -s conftest$ac_exeext'
  23616.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23617.   (eval $ac_try) 2>&5
  23618.   ac_status=$?
  23619.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23620.   (exit $ac_status); }; }; then
  23621.   ac_cv_lib_qt_mt_main=yes
  23622. else
  23623.   echo "$as_me: failed program was:" >&5
  23624. sed 's/^/| /' conftest.$ac_ext >&5
  23625.  
  23626. ac_cv_lib_qt_mt_main=no
  23627. fi
  23628. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  23629. LIBS=$ac_check_lib_save_LIBS
  23630. fi
  23631. echo "$as_me:$LINENO: result: $ac_cv_lib_qt_mt_main" >&5
  23632. echo "${ECHO_T}$ac_cv_lib_qt_mt_main" >&6
  23633. if test $ac_cv_lib_qt_mt_main = yes; then
  23634.  
  23635.        LDFLAGS_qt="${LDFLAGS_qt} -lqt-mt"
  23636.  
  23637. else
  23638.  
  23639.        echo "$as_me:$LINENO: checking for main in -lqt" >&5
  23640. echo $ECHO_N "checking for main in -lqt... $ECHO_C" >&6
  23641. if test "${ac_cv_lib_qt_main+set}" = set; then
  23642.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23643. else
  23644.   ac_check_lib_save_LIBS=$LIBS
  23645. LIBS="-lqt  $LIBS"
  23646. cat >conftest.$ac_ext <<_ACEOF
  23647. #line $LINENO "configure"
  23648. /* confdefs.h.  */
  23649. _ACEOF
  23650. cat confdefs.h >>conftest.$ac_ext
  23651. cat >>conftest.$ac_ext <<_ACEOF
  23652. /* end confdefs.h.  */
  23653.  
  23654.  
  23655. int
  23656. main ()
  23657. {
  23658. main ();
  23659.   ;
  23660.   return 0;
  23661. }
  23662. _ACEOF
  23663. rm -f conftest.$ac_objext conftest$ac_exeext
  23664. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  23665.   (eval $ac_link) 2>&5
  23666.   ac_status=$?
  23667.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23668.   (exit $ac_status); } &&
  23669.          { ac_try='test -s conftest$ac_exeext'
  23670.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23671.   (eval $ac_try) 2>&5
  23672.   ac_status=$?
  23673.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23674.   (exit $ac_status); }; }; then
  23675.   ac_cv_lib_qt_main=yes
  23676. else
  23677.   echo "$as_me: failed program was:" >&5
  23678. sed 's/^/| /' conftest.$ac_ext >&5
  23679.  
  23680. ac_cv_lib_qt_main=no
  23681. fi
  23682. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  23683. LIBS=$ac_check_lib_save_LIBS
  23684. fi
  23685. echo "$as_me:$LINENO: result: $ac_cv_lib_qt_main" >&5
  23686. echo "${ECHO_T}$ac_cv_lib_qt_main" >&6
  23687. if test $ac_cv_lib_qt_main = yes; then
  23688.  
  23689.          LDFLAGS_qt="${LDFLAGS_qt} -lqt"
  23690.  
  23691. fi
  23692.  
  23693.  
  23694. fi
  23695.  
  23696.      LDFLAGS="${LDFLAGS_save}"
  23697.      CPPFLAGS_qt="${CPPFLAGS_qt} -I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include"
  23698.      if test -x ${QTDIR}/bin/moc
  23699.      then
  23700.        MOC=${QTDIR}/bin/moc
  23701.      else
  23702.        MOC=moc
  23703.      fi
  23704.    fi
  23705. fi;
  23706.  
  23707. # Check whether --enable-kde or --disable-kde was given.
  23708. if test "${enable_kde+set}" = set; then
  23709.   enableval="$enable_kde"
  23710.   if test "x${enable_kde}" = "xyes"; then
  23711.      PLUGINS="${PLUGINS} kde"
  23712.      ALIASES="${ALIASES} kvlc"
  23713.      LDFLAGS_kde="${LDFLAGS_kde} -L${KDEDIR}/lib"
  23714.           LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
  23715.      echo "$as_me:$LINENO: checking for main in -lkfile" >&5
  23716. echo $ECHO_N "checking for main in -lkfile... $ECHO_C" >&6
  23717. if test "${ac_cv_lib_kfile_main+set}" = set; then
  23718.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23719. else
  23720.   ac_check_lib_save_LIBS=$LIBS
  23721. LIBS="-lkfile  $LIBS"
  23722. cat >conftest.$ac_ext <<_ACEOF
  23723. #line $LINENO "configure"
  23724. /* confdefs.h.  */
  23725. _ACEOF
  23726. cat confdefs.h >>conftest.$ac_ext
  23727. cat >>conftest.$ac_ext <<_ACEOF
  23728. /* end confdefs.h.  */
  23729.  
  23730.  
  23731. int
  23732. main ()
  23733. {
  23734. main ();
  23735.   ;
  23736.   return 0;
  23737. }
  23738. _ACEOF
  23739. rm -f conftest.$ac_objext conftest$ac_exeext
  23740. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  23741.   (eval $ac_link) 2>&5
  23742.   ac_status=$?
  23743.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23744.   (exit $ac_status); } &&
  23745.          { ac_try='test -s conftest$ac_exeext'
  23746.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23747.   (eval $ac_try) 2>&5
  23748.   ac_status=$?
  23749.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23750.   (exit $ac_status); }; }; then
  23751.   ac_cv_lib_kfile_main=yes
  23752. else
  23753.   echo "$as_me: failed program was:" >&5
  23754. sed 's/^/| /' conftest.$ac_ext >&5
  23755.  
  23756. ac_cv_lib_kfile_main=no
  23757. fi
  23758. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  23759. LIBS=$ac_check_lib_save_LIBS
  23760. fi
  23761. echo "$as_me:$LINENO: result: $ac_cv_lib_kfile_main" >&5
  23762. echo "${ECHO_T}$ac_cv_lib_kfile_main" >&6
  23763. if test $ac_cv_lib_kfile_main = yes; then
  23764.  
  23765.        LDFLAGS_kde="${LDFLAGS_kde} -lkfile"
  23766.  
  23767. fi
  23768.  
  23769.      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
  23770.      echo "$as_me:$LINENO: checking for main in -lkdeui" >&5
  23771. echo $ECHO_N "checking for main in -lkdeui... $ECHO_C" >&6
  23772. if test "${ac_cv_lib_kdeui_main+set}" = set; then
  23773.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23774. else
  23775.   ac_check_lib_save_LIBS=$LIBS
  23776. LIBS="-lkdeui  $LIBS"
  23777. cat >conftest.$ac_ext <<_ACEOF
  23778. #line $LINENO "configure"
  23779. /* confdefs.h.  */
  23780. _ACEOF
  23781. cat confdefs.h >>conftest.$ac_ext
  23782. cat >>conftest.$ac_ext <<_ACEOF
  23783. /* end confdefs.h.  */
  23784.  
  23785.  
  23786. int
  23787. main ()
  23788. {
  23789. main ();
  23790.   ;
  23791.   return 0;
  23792. }
  23793. _ACEOF
  23794. rm -f conftest.$ac_objext conftest$ac_exeext
  23795. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  23796.   (eval $ac_link) 2>&5
  23797.   ac_status=$?
  23798.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23799.   (exit $ac_status); } &&
  23800.          { ac_try='test -s conftest$ac_exeext'
  23801.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23802.   (eval $ac_try) 2>&5
  23803.   ac_status=$?
  23804.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23805.   (exit $ac_status); }; }; then
  23806.   ac_cv_lib_kdeui_main=yes
  23807. else
  23808.   echo "$as_me: failed program was:" >&5
  23809. sed 's/^/| /' conftest.$ac_ext >&5
  23810.  
  23811. ac_cv_lib_kdeui_main=no
  23812. fi
  23813. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  23814. LIBS=$ac_check_lib_save_LIBS
  23815. fi
  23816. echo "$as_me:$LINENO: result: $ac_cv_lib_kdeui_main" >&5
  23817. echo "${ECHO_T}$ac_cv_lib_kdeui_main" >&6
  23818. if test $ac_cv_lib_kdeui_main = yes; then
  23819.  
  23820.        LDFLAGS_kde="${LDFLAGS_kde} -lkdeui"
  23821.  
  23822. fi
  23823.  
  23824.      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
  23825.      echo "$as_me:$LINENO: checking for main in -lkio" >&5
  23826. echo $ECHO_N "checking for main in -lkio... $ECHO_C" >&6
  23827. if test "${ac_cv_lib_kio_main+set}" = set; then
  23828.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23829. else
  23830.   ac_check_lib_save_LIBS=$LIBS
  23831. LIBS="-lkio  $LIBS"
  23832. cat >conftest.$ac_ext <<_ACEOF
  23833. #line $LINENO "configure"
  23834. /* confdefs.h.  */
  23835. _ACEOF
  23836. cat confdefs.h >>conftest.$ac_ext
  23837. cat >>conftest.$ac_ext <<_ACEOF
  23838. /* end confdefs.h.  */
  23839.  
  23840.  
  23841. int
  23842. main ()
  23843. {
  23844. main ();
  23845.   ;
  23846.   return 0;
  23847. }
  23848. _ACEOF
  23849. rm -f conftest.$ac_objext conftest$ac_exeext
  23850. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  23851.   (eval $ac_link) 2>&5
  23852.   ac_status=$?
  23853.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23854.   (exit $ac_status); } &&
  23855.          { ac_try='test -s conftest$ac_exeext'
  23856.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23857.   (eval $ac_try) 2>&5
  23858.   ac_status=$?
  23859.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23860.   (exit $ac_status); }; }; then
  23861.   ac_cv_lib_kio_main=yes
  23862. else
  23863.   echo "$as_me: failed program was:" >&5
  23864. sed 's/^/| /' conftest.$ac_ext >&5
  23865.  
  23866. ac_cv_lib_kio_main=no
  23867. fi
  23868. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  23869. LIBS=$ac_check_lib_save_LIBS
  23870. fi
  23871. echo "$as_me:$LINENO: result: $ac_cv_lib_kio_main" >&5
  23872. echo "${ECHO_T}$ac_cv_lib_kio_main" >&6
  23873. if test $ac_cv_lib_kio_main = yes; then
  23874.  
  23875.        LDFLAGS_kde="${LDFLAGS_kde} -lkio"
  23876.  
  23877. fi
  23878.  
  23879.      LDFLAGS="${LDFLAGS_save}"
  23880.      CPPFLAGS_kde="${CPPFLAGS_kde} -I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt"
  23881.      CPPFLAGS_kde="${CPPFLAGS_kde} -I${KDEDIR}/include -I${QTDIR}/include"
  23882.      if test -x ${QTDIR}/bin/moc
  23883.      then
  23884.        MOC=${QTDIR}/bin/moc
  23885.      else
  23886.        MOC=moc
  23887.      fi
  23888.    fi
  23889. fi;
  23890.  
  23891. # Check whether --enable-opie or --disable-opie was given.
  23892. if test "${enable_opie+set}" = set; then
  23893.   enableval="$enable_opie"
  23894.   if test "x${enable_opie}" = "xyes"; then
  23895.  
  23896. # Check whether --with-qte or --without-qte was given.
  23897. if test "${with_qte+set}" = set; then
  23898.   withval="$with_qte"
  23899.  
  23900. fi;
  23901.      if test "x${with_qte}" != "xno" -a "x${with_qte}" != "x"
  23902.      then
  23903.        LDFLAGS_qte="-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte"
  23904.        CPPFLAGS_qte="-I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti"
  23905.      else
  23906.        LDFLAGS_qte="-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`"
  23907.        CPPFLAGS_qte="-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`"
  23908.      fi
  23909.      CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_qte}"
  23910.  
  23911.  
  23912. for ac_header in qt.h jpeglib.h
  23913. do
  23914. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  23915. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23916.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  23917. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  23918. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  23919.   echo $ECHO_N "(cached) $ECHO_C" >&6
  23920. fi
  23921. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  23922. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  23923. else
  23924.   # Is the header compilable?
  23925. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  23926. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  23927. cat >conftest.$ac_ext <<_ACEOF
  23928. #line $LINENO "configure"
  23929. /* confdefs.h.  */
  23930. _ACEOF
  23931. cat confdefs.h >>conftest.$ac_ext
  23932. cat >>conftest.$ac_ext <<_ACEOF
  23933. /* end confdefs.h.  */
  23934. $ac_includes_default
  23935. #include <$ac_header>
  23936. _ACEOF
  23937. rm -f conftest.$ac_objext
  23938. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  23939.   (eval $ac_compile) 2>&5
  23940.   ac_status=$?
  23941.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23942.   (exit $ac_status); } &&
  23943.          { ac_try='test -s conftest.$ac_objext'
  23944.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  23945.   (eval $ac_try) 2>&5
  23946.   ac_status=$?
  23947.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23948.   (exit $ac_status); }; }; then
  23949.   ac_header_compiler=yes
  23950. else
  23951.   echo "$as_me: failed program was:" >&5
  23952. sed 's/^/| /' conftest.$ac_ext >&5
  23953.  
  23954. ac_header_compiler=no
  23955. fi
  23956. rm -f conftest.$ac_objext conftest.$ac_ext
  23957. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  23958. echo "${ECHO_T}$ac_header_compiler" >&6
  23959.  
  23960. # Is the header present?
  23961. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  23962. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  23963. cat >conftest.$ac_ext <<_ACEOF
  23964. #line $LINENO "configure"
  23965. /* confdefs.h.  */
  23966. _ACEOF
  23967. cat confdefs.h >>conftest.$ac_ext
  23968. cat >>conftest.$ac_ext <<_ACEOF
  23969. /* end confdefs.h.  */
  23970. #include <$ac_header>
  23971. _ACEOF
  23972. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  23973.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  23974.   ac_status=$?
  23975.   grep -v '^ *+' conftest.er1 >conftest.err
  23976.   rm -f conftest.er1
  23977.   cat conftest.err >&5
  23978.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  23979.   (exit $ac_status); } >/dev/null; then
  23980.   if test -s conftest.err; then
  23981.     ac_cpp_err=$ac_c_preproc_warn_flag
  23982.   else
  23983.     ac_cpp_err=
  23984.   fi
  23985. else
  23986.   ac_cpp_err=yes
  23987. fi
  23988. if test -z "$ac_cpp_err"; then
  23989.   ac_header_preproc=yes
  23990. else
  23991.   echo "$as_me: failed program was:" >&5
  23992. sed 's/^/| /' conftest.$ac_ext >&5
  23993.  
  23994.   ac_header_preproc=no
  23995. fi
  23996. rm -f conftest.err conftest.$ac_ext
  23997. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  23998. echo "${ECHO_T}$ac_header_preproc" >&6
  23999.  
  24000. # So?  What about this header?
  24001. case $ac_header_compiler:$ac_header_preproc in
  24002.   yes:no )
  24003.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  24004. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  24005.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24006. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24007.     (
  24008.       cat <<\_ASBOX
  24009. ## ------------------------------------ ##
  24010. ## Report this to bug-autoconf@gnu.org. ##
  24011. ## ------------------------------------ ##
  24012. _ASBOX
  24013.     ) |
  24014.       sed "s/^/$as_me: WARNING:     /" >&2
  24015.     ;;
  24016.   no:yes )
  24017.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  24018. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  24019.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  24020. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  24021.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24022. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24023.     (
  24024.       cat <<\_ASBOX
  24025. ## ------------------------------------ ##
  24026. ## Report this to bug-autoconf@gnu.org. ##
  24027. ## ------------------------------------ ##
  24028. _ASBOX
  24029.     ) |
  24030.       sed "s/^/$as_me: WARNING:     /" >&2
  24031.     ;;
  24032. esac
  24033. echo "$as_me:$LINENO: checking for $ac_header" >&5
  24034. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  24035. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24036.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24037. else
  24038.   eval "$as_ac_Header=$ac_header_preproc"
  24039. fi
  24040. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  24041. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  24042.  
  24043. fi
  24044. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  24045.   cat >>confdefs.h <<_ACEOF
  24046. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  24047. _ACEOF
  24048.  
  24049. else
  24050.  
  24051.        { { echo "$as_me:$LINENO: error: echo \"Cannot find QT Embedded development headers.\"" >&5
  24052. echo "$as_me: error: echo \"Cannot find QT Embedded development headers.\"" >&2;}
  24053.    { (exit 1); exit 1; }; }
  24054.  
  24055. fi
  24056.  
  24057. done
  24058.  
  24059.      CPPFLAGS="${CPPFLAGS_save}"
  24060.  
  24061.      PLUGINS="${PLUGINS} opie"
  24062.      NEED_QTE_MAIN=yes
  24063.      LDFLAGS_opie="${LDFLAGS_opie} -lqpe ${LDFLAGS_qte}"
  24064.      CPPFLAGS_opie="${CPPFLAGS_opie} ${CPPFLAGS_qte}"
  24065.      if test "x${with_qte}" != "xno" -a "x${with_qte}" != "x"
  24066.      then
  24067.        MOC=${with_qte}/bin/moc
  24068.      else
  24069.        MOC=${QTDIR}/bin/moc
  24070.      fi
  24071.    fi
  24072. fi;
  24073.  
  24074. # Check whether --enable-macosx or --disable-macosx was given.
  24075. if test "${enable_macosx+set}" = set; then
  24076.   enableval="$enable_macosx"
  24077.   if test "x${enable_macosx}" = "xyes"
  24078.    then
  24079.      BUILTINS="${BUILTINS} macosx"
  24080.      LDFLAGS_macosx="${LDFLAGS_macosx} -framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC"
  24081.    fi
  24082. else
  24083.  
  24084. for ac_header in Cocoa/Cocoa.h
  24085. do
  24086. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  24087. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24088.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  24089. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  24090. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24091.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24092. fi
  24093. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  24094. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  24095. else
  24096.   # Is the header compilable?
  24097. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  24098. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  24099. cat >conftest.$ac_ext <<_ACEOF
  24100. #line $LINENO "configure"
  24101. /* confdefs.h.  */
  24102. _ACEOF
  24103. cat confdefs.h >>conftest.$ac_ext
  24104. cat >>conftest.$ac_ext <<_ACEOF
  24105. /* end confdefs.h.  */
  24106. $ac_includes_default
  24107. #include <$ac_header>
  24108. _ACEOF
  24109. rm -f conftest.$ac_objext
  24110. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  24111.   (eval $ac_compile) 2>&5
  24112.   ac_status=$?
  24113.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24114.   (exit $ac_status); } &&
  24115.          { ac_try='test -s conftest.$ac_objext'
  24116.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24117.   (eval $ac_try) 2>&5
  24118.   ac_status=$?
  24119.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24120.   (exit $ac_status); }; }; then
  24121.   ac_header_compiler=yes
  24122. else
  24123.   echo "$as_me: failed program was:" >&5
  24124. sed 's/^/| /' conftest.$ac_ext >&5
  24125.  
  24126. ac_header_compiler=no
  24127. fi
  24128. rm -f conftest.$ac_objext conftest.$ac_ext
  24129. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  24130. echo "${ECHO_T}$ac_header_compiler" >&6
  24131.  
  24132. # Is the header present?
  24133. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  24134. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  24135. cat >conftest.$ac_ext <<_ACEOF
  24136. #line $LINENO "configure"
  24137. /* confdefs.h.  */
  24138. _ACEOF
  24139. cat confdefs.h >>conftest.$ac_ext
  24140. cat >>conftest.$ac_ext <<_ACEOF
  24141. /* end confdefs.h.  */
  24142. #include <$ac_header>
  24143. _ACEOF
  24144. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  24145.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  24146.   ac_status=$?
  24147.   grep -v '^ *+' conftest.er1 >conftest.err
  24148.   rm -f conftest.er1
  24149.   cat conftest.err >&5
  24150.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24151.   (exit $ac_status); } >/dev/null; then
  24152.   if test -s conftest.err; then
  24153.     ac_cpp_err=$ac_c_preproc_warn_flag
  24154.   else
  24155.     ac_cpp_err=
  24156.   fi
  24157. else
  24158.   ac_cpp_err=yes
  24159. fi
  24160. if test -z "$ac_cpp_err"; then
  24161.   ac_header_preproc=yes
  24162. else
  24163.   echo "$as_me: failed program was:" >&5
  24164. sed 's/^/| /' conftest.$ac_ext >&5
  24165.  
  24166.   ac_header_preproc=no
  24167. fi
  24168. rm -f conftest.err conftest.$ac_ext
  24169. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  24170. echo "${ECHO_T}$ac_header_preproc" >&6
  24171.  
  24172. # So?  What about this header?
  24173. case $ac_header_compiler:$ac_header_preproc in
  24174.   yes:no )
  24175.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  24176. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  24177.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24178. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24179.     (
  24180.       cat <<\_ASBOX
  24181. ## ------------------------------------ ##
  24182. ## Report this to bug-autoconf@gnu.org. ##
  24183. ## ------------------------------------ ##
  24184. _ASBOX
  24185.     ) |
  24186.       sed "s/^/$as_me: WARNING:     /" >&2
  24187.     ;;
  24188.   no:yes )
  24189.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  24190. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  24191.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  24192. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  24193.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24194. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24195.     (
  24196.       cat <<\_ASBOX
  24197. ## ------------------------------------ ##
  24198. ## Report this to bug-autoconf@gnu.org. ##
  24199. ## ------------------------------------ ##
  24200. _ASBOX
  24201.     ) |
  24202.       sed "s/^/$as_me: WARNING:     /" >&2
  24203.     ;;
  24204. esac
  24205. echo "$as_me:$LINENO: checking for $ac_header" >&5
  24206. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  24207. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24208.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24209. else
  24210.   eval "$as_ac_Header=$ac_header_preproc"
  24211. fi
  24212. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  24213. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  24214.  
  24215. fi
  24216. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  24217.   cat >>confdefs.h <<_ACEOF
  24218. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  24219. _ACEOF
  24220.  BUILTINS="${BUILTINS} macosx"
  24221.      LDFLAGS_macosx="${LDFLAGS_macosx} -framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC"
  24222.  
  24223. fi
  24224.  
  24225. done
  24226.  
  24227. fi;
  24228.  
  24229. # Check whether --enable-qnx or --disable-qnx was given.
  24230. if test "${enable_qnx+set}" = set; then
  24231.   enableval="$enable_qnx"
  24232.  
  24233. fi;
  24234.     if test "x${enable_qnx}" != "xno"
  24235.     then
  24236.  
  24237. for ac_header in Ph.h
  24238. do
  24239. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  24240. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24241.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  24242. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  24243. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24244.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24245. fi
  24246. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  24247. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  24248. else
  24249.   # Is the header compilable?
  24250. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  24251. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  24252. cat >conftest.$ac_ext <<_ACEOF
  24253. #line $LINENO "configure"
  24254. /* confdefs.h.  */
  24255. _ACEOF
  24256. cat confdefs.h >>conftest.$ac_ext
  24257. cat >>conftest.$ac_ext <<_ACEOF
  24258. /* end confdefs.h.  */
  24259. $ac_includes_default
  24260. #include <$ac_header>
  24261. _ACEOF
  24262. rm -f conftest.$ac_objext
  24263. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  24264.   (eval $ac_compile) 2>&5
  24265.   ac_status=$?
  24266.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24267.   (exit $ac_status); } &&
  24268.          { ac_try='test -s conftest.$ac_objext'
  24269.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24270.   (eval $ac_try) 2>&5
  24271.   ac_status=$?
  24272.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24273.   (exit $ac_status); }; }; then
  24274.   ac_header_compiler=yes
  24275. else
  24276.   echo "$as_me: failed program was:" >&5
  24277. sed 's/^/| /' conftest.$ac_ext >&5
  24278.  
  24279. ac_header_compiler=no
  24280. fi
  24281. rm -f conftest.$ac_objext conftest.$ac_ext
  24282. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  24283. echo "${ECHO_T}$ac_header_compiler" >&6
  24284.  
  24285. # Is the header present?
  24286. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  24287. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  24288. cat >conftest.$ac_ext <<_ACEOF
  24289. #line $LINENO "configure"
  24290. /* confdefs.h.  */
  24291. _ACEOF
  24292. cat confdefs.h >>conftest.$ac_ext
  24293. cat >>conftest.$ac_ext <<_ACEOF
  24294. /* end confdefs.h.  */
  24295. #include <$ac_header>
  24296. _ACEOF
  24297. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  24298.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  24299.   ac_status=$?
  24300.   grep -v '^ *+' conftest.er1 >conftest.err
  24301.   rm -f conftest.er1
  24302.   cat conftest.err >&5
  24303.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24304.   (exit $ac_status); } >/dev/null; then
  24305.   if test -s conftest.err; then
  24306.     ac_cpp_err=$ac_c_preproc_warn_flag
  24307.   else
  24308.     ac_cpp_err=
  24309.   fi
  24310. else
  24311.   ac_cpp_err=yes
  24312. fi
  24313. if test -z "$ac_cpp_err"; then
  24314.   ac_header_preproc=yes
  24315. else
  24316.   echo "$as_me: failed program was:" >&5
  24317. sed 's/^/| /' conftest.$ac_ext >&5
  24318.  
  24319.   ac_header_preproc=no
  24320. fi
  24321. rm -f conftest.err conftest.$ac_ext
  24322. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  24323. echo "${ECHO_T}$ac_header_preproc" >&6
  24324.  
  24325. # So?  What about this header?
  24326. case $ac_header_compiler:$ac_header_preproc in
  24327.   yes:no )
  24328.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  24329. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  24330.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24331. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24332.     (
  24333.       cat <<\_ASBOX
  24334. ## ------------------------------------ ##
  24335. ## Report this to bug-autoconf@gnu.org. ##
  24336. ## ------------------------------------ ##
  24337. _ASBOX
  24338.     ) |
  24339.       sed "s/^/$as_me: WARNING:     /" >&2
  24340.     ;;
  24341.   no:yes )
  24342.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  24343. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  24344.     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
  24345. echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
  24346.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  24347. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  24348.     (
  24349.       cat <<\_ASBOX
  24350. ## ------------------------------------ ##
  24351. ## Report this to bug-autoconf@gnu.org. ##
  24352. ## ------------------------------------ ##
  24353. _ASBOX
  24354.     ) |
  24355.       sed "s/^/$as_me: WARNING:     /" >&2
  24356.     ;;
  24357. esac
  24358. echo "$as_me:$LINENO: checking for $ac_header" >&5
  24359. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  24360. if eval "test \"\${$as_ac_Header+set}\" = set"; then
  24361.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24362. else
  24363.   eval "$as_ac_Header=$ac_header_preproc"
  24364. fi
  24365. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  24366. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  24367.  
  24368. fi
  24369. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  24370.   cat >>confdefs.h <<_ACEOF
  24371. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  24372. _ACEOF
  24373.  
  24374.         PLUGINS="${PLUGINS} qnx"
  24375.         LDFLAGS_qnx="${LDFLAGS_qnx} -lasound -lph"
  24376.  
  24377. fi
  24378.  
  24379. done
  24380.  
  24381.     fi
  24382.  
  24383. # Check whether --enable-intfwin or --disable-intfwin was given.
  24384. if test "${enable_intfwin+set}" = set; then
  24385.   enableval="$enable_intfwin"
  24386.    if test "x${enable_intfwin}" != "xno"
  24387.   then
  24388.     if test -n "$ac_tool_prefix"; then
  24389.   # Extract the first word of "${ac_tool_prefix}bpr2mak", so it can be a program name with args.
  24390. set dummy ${ac_tool_prefix}bpr2mak; ac_word=$2
  24391. echo "$as_me:$LINENO: checking for $ac_word" >&5
  24392. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  24393. if test "${ac_cv_prog_BPR2MAK+set}" = set; then
  24394.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24395. else
  24396.   if test -n "$BPR2MAK"; then
  24397.   ac_cv_prog_BPR2MAK="$BPR2MAK" # Let the user override the test.
  24398. else
  24399. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  24400. for as_dir in $PATH
  24401. do
  24402.   IFS=$as_save_IFS
  24403.   test -z "$as_dir" && as_dir=.
  24404.   for ac_exec_ext in '' $ac_executable_extensions; do
  24405.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  24406.     ac_cv_prog_BPR2MAK="${ac_tool_prefix}bpr2mak"
  24407.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  24408.     break 2
  24409.   fi
  24410. done
  24411. done
  24412.  
  24413. fi
  24414. fi
  24415. BPR2MAK=$ac_cv_prog_BPR2MAK
  24416. if test -n "$BPR2MAK"; then
  24417.   echo "$as_me:$LINENO: result: $BPR2MAK" >&5
  24418. echo "${ECHO_T}$BPR2MAK" >&6
  24419. else
  24420.   echo "$as_me:$LINENO: result: no" >&5
  24421. echo "${ECHO_T}no" >&6
  24422. fi
  24423.  
  24424. fi
  24425. if test -z "$ac_cv_prog_BPR2MAK"; then
  24426.   ac_ct_BPR2MAK=$BPR2MAK
  24427.   # Extract the first word of "bpr2mak", so it can be a program name with args.
  24428. set dummy bpr2mak; ac_word=$2
  24429. echo "$as_me:$LINENO: checking for $ac_word" >&5
  24430. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  24431. if test "${ac_cv_prog_ac_ct_BPR2MAK+set}" = set; then
  24432.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24433. else
  24434.   if test -n "$ac_ct_BPR2MAK"; then
  24435.   ac_cv_prog_ac_ct_BPR2MAK="$ac_ct_BPR2MAK" # Let the user override the test.
  24436. else
  24437. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  24438. for as_dir in $PATH
  24439. do
  24440.   IFS=$as_save_IFS
  24441.   test -z "$as_dir" && as_dir=.
  24442.   for ac_exec_ext in '' $ac_executable_extensions; do
  24443.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  24444.     ac_cv_prog_ac_ct_BPR2MAK="bpr2mak"
  24445.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  24446.     break 2
  24447.   fi
  24448. done
  24449. done
  24450.  
  24451.   test -z "$ac_cv_prog_ac_ct_BPR2MAK" && ac_cv_prog_ac_ct_BPR2MAK="{ { echo "$as_me:$LINENO: error: bpr2mak not found" >&5
  24452. echo "$as_me: error: bpr2mak not found" >&2;}
  24453.    { (exit 1); exit 1; }; }"
  24454. fi
  24455. fi
  24456. ac_ct_BPR2MAK=$ac_cv_prog_ac_ct_BPR2MAK
  24457. if test -n "$ac_ct_BPR2MAK"; then
  24458.   echo "$as_me:$LINENO: result: $ac_ct_BPR2MAK" >&5
  24459. echo "${ECHO_T}$ac_ct_BPR2MAK" >&6
  24460. else
  24461.   echo "$as_me:$LINENO: result: no" >&5
  24462. echo "${ECHO_T}no" >&6
  24463. fi
  24464.  
  24465.   BPR2MAK=$ac_ct_BPR2MAK
  24466. else
  24467.   BPR2MAK="$ac_cv_prog_BPR2MAK"
  24468. fi
  24469.  
  24470.     if test -n "$ac_tool_prefix"; then
  24471.   # Extract the first word of "${ac_tool_prefix}bcmake", so it can be a program name with args.
  24472. set dummy ${ac_tool_prefix}bcmake; ac_word=$2
  24473. echo "$as_me:$LINENO: checking for $ac_word" >&5
  24474. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  24475. if test "${ac_cv_prog_BCMAKE+set}" = set; then
  24476.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24477. else
  24478.   if test -n "$BCMAKE"; then
  24479.   ac_cv_prog_BCMAKE="$BCMAKE" # Let the user override the test.
  24480. else
  24481. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  24482. for as_dir in $PATH
  24483. do
  24484.   IFS=$as_save_IFS
  24485.   test -z "$as_dir" && as_dir=.
  24486.   for ac_exec_ext in '' $ac_executable_extensions; do
  24487.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  24488.     ac_cv_prog_BCMAKE="${ac_tool_prefix}bcmake"
  24489.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  24490.     break 2
  24491.   fi
  24492. done
  24493. done
  24494.  
  24495. fi
  24496. fi
  24497. BCMAKE=$ac_cv_prog_BCMAKE
  24498. if test -n "$BCMAKE"; then
  24499.   echo "$as_me:$LINENO: result: $BCMAKE" >&5
  24500. echo "${ECHO_T}$BCMAKE" >&6
  24501. else
  24502.   echo "$as_me:$LINENO: result: no" >&5
  24503. echo "${ECHO_T}no" >&6
  24504. fi
  24505.  
  24506. fi
  24507. if test -z "$ac_cv_prog_BCMAKE"; then
  24508.   ac_ct_BCMAKE=$BCMAKE
  24509.   # Extract the first word of "bcmake", so it can be a program name with args.
  24510. set dummy bcmake; ac_word=$2
  24511. echo "$as_me:$LINENO: checking for $ac_word" >&5
  24512. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  24513. if test "${ac_cv_prog_ac_ct_BCMAKE+set}" = set; then
  24514.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24515. else
  24516.   if test -n "$ac_ct_BCMAKE"; then
  24517.   ac_cv_prog_ac_ct_BCMAKE="$ac_ct_BCMAKE" # Let the user override the test.
  24518. else
  24519. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  24520. for as_dir in $PATH
  24521. do
  24522.   IFS=$as_save_IFS
  24523.   test -z "$as_dir" && as_dir=.
  24524.   for ac_exec_ext in '' $ac_executable_extensions; do
  24525.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  24526.     ac_cv_prog_ac_ct_BCMAKE="bcmake"
  24527.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  24528.     break 2
  24529.   fi
  24530. done
  24531. done
  24532.  
  24533.   test -z "$ac_cv_prog_ac_ct_BCMAKE" && ac_cv_prog_ac_ct_BCMAKE="{ { echo "$as_me:$LINENO: error: bcmake not found" >&5
  24534. echo "$as_me: error: bcmake not found" >&2;}
  24535.    { (exit 1); exit 1; }; }"
  24536. fi
  24537. fi
  24538. ac_ct_BCMAKE=$ac_cv_prog_ac_ct_BCMAKE
  24539. if test -n "$ac_ct_BCMAKE"; then
  24540.   echo "$as_me:$LINENO: result: $ac_ct_BCMAKE" >&5
  24541. echo "${ECHO_T}$ac_ct_BCMAKE" >&6
  24542. else
  24543.   echo "$as_me:$LINENO: result: no" >&5
  24544. echo "${ECHO_T}no" >&6
  24545. fi
  24546.  
  24547.   BCMAKE=$ac_ct_BCMAKE
  24548. else
  24549.   BCMAKE="$ac_cv_prog_BCMAKE"
  24550. fi
  24551.  
  24552.     PLUGINS="${PLUGINS} win32"
  24553.   fi
  24554. fi;
  24555.  
  24556. # Check whether --enable-ncurses or --disable-ncurses was given.
  24557. if test "${enable_ncurses+set}" = set; then
  24558.   enableval="$enable_ncurses"
  24559.   if test "x${enable_ncurses}" = "xyes"; then
  24560.      PLUGINS="${PLUGINS} ncurses"
  24561.      LDFLAGS_ncurses="${LDFLAGS_ncurses} -lncurses"
  24562.    fi
  24563. fi;
  24564.  
  24565. # Check whether --enable-xosd or --disable-xosd was given.
  24566. if test "${enable_xosd+set}" = set; then
  24567.   enableval="$enable_xosd"
  24568.  
  24569. fi;
  24570. if test "x${enable_xosd}" = "xyes"
  24571. then
  24572.   if test "${ac_cv_header_xosd_h+set}" = set; then
  24573.   echo "$as_me:$LINENO: checking for xosd.h" >&5
  24574. echo $ECHO_N "checking for xosd.h... $ECHO_C" >&6
  24575. if test "${ac_cv_header_xosd_h+set}" = set; then
  24576.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24577. fi
  24578. echo "$as_me:$LINENO: result: $ac_cv_header_xosd_h" >&5
  24579. echo "${ECHO_T}$ac_cv_header_xosd_h" >&6
  24580. else
  24581.   # Is the header compilable?
  24582. echo "$as_me:$LINENO: checking xosd.h usability" >&5
  24583. echo $ECHO_N "checking xosd.h usability... $ECHO_C" >&6
  24584. cat >conftest.$ac_ext <<_ACEOF
  24585. #line $LINENO "configure"
  24586. /* confdefs.h.  */
  24587. _ACEOF
  24588. cat confdefs.h >>conftest.$ac_ext
  24589. cat >>conftest.$ac_ext <<_ACEOF
  24590. /* end confdefs.h.  */
  24591. $ac_includes_default
  24592. #include <xosd.h>
  24593. _ACEOF
  24594. rm -f conftest.$ac_objext
  24595. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  24596.   (eval $ac_compile) 2>&5
  24597.   ac_status=$?
  24598.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24599.   (exit $ac_status); } &&
  24600.          { ac_try='test -s conftest.$ac_objext'
  24601.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24602.   (eval $ac_try) 2>&5
  24603.   ac_status=$?
  24604.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24605.   (exit $ac_status); }; }; then
  24606.   ac_header_compiler=yes
  24607. else
  24608.   echo "$as_me: failed program was:" >&5
  24609. sed 's/^/| /' conftest.$ac_ext >&5
  24610.  
  24611. ac_header_compiler=no
  24612. fi
  24613. rm -f conftest.$ac_objext conftest.$ac_ext
  24614. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  24615. echo "${ECHO_T}$ac_header_compiler" >&6
  24616.  
  24617. # Is the header present?
  24618. echo "$as_me:$LINENO: checking xosd.h presence" >&5
  24619. echo $ECHO_N "checking xosd.h presence... $ECHO_C" >&6
  24620. cat >conftest.$ac_ext <<_ACEOF
  24621. #line $LINENO "configure"
  24622. /* confdefs.h.  */
  24623. _ACEOF
  24624. cat confdefs.h >>conftest.$ac_ext
  24625. cat >>conftest.$ac_ext <<_ACEOF
  24626. /* end confdefs.h.  */
  24627. #include <xosd.h>
  24628. _ACEOF
  24629. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  24630.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  24631.   ac_status=$?
  24632.   grep -v '^ *+' conftest.er1 >conftest.err
  24633.   rm -f conftest.er1
  24634.   cat conftest.err >&5
  24635.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24636.   (exit $ac_status); } >/dev/null; then
  24637.   if test -s conftest.err; then
  24638.     ac_cpp_err=$ac_c_preproc_warn_flag
  24639.   else
  24640.     ac_cpp_err=
  24641.   fi
  24642. else
  24643.   ac_cpp_err=yes
  24644. fi
  24645. if test -z "$ac_cpp_err"; then
  24646.   ac_header_preproc=yes
  24647. else
  24648.   echo "$as_me: failed program was:" >&5
  24649. sed 's/^/| /' conftest.$ac_ext >&5
  24650.  
  24651.   ac_header_preproc=no
  24652. fi
  24653. rm -f conftest.err conftest.$ac_ext
  24654. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  24655. echo "${ECHO_T}$ac_header_preproc" >&6
  24656.  
  24657. # So?  What about this header?
  24658. case $ac_header_compiler:$ac_header_preproc in
  24659.   yes:no )
  24660.     { echo "$as_me:$LINENO: WARNING: xosd.h: accepted by the compiler, rejected by the preprocessor!" >&5
  24661. echo "$as_me: WARNING: xosd.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  24662.     { echo "$as_me:$LINENO: WARNING: xosd.h: proceeding with the preprocessor's result" >&5
  24663. echo "$as_me: WARNING: xosd.h: proceeding with the preprocessor's result" >&2;}
  24664.     (
  24665.       cat <<\_ASBOX
  24666. ## ------------------------------------ ##
  24667. ## Report this to bug-autoconf@gnu.org. ##
  24668. ## ------------------------------------ ##
  24669. _ASBOX
  24670.     ) |
  24671.       sed "s/^/$as_me: WARNING:     /" >&2
  24672.     ;;
  24673.   no:yes )
  24674.     { echo "$as_me:$LINENO: WARNING: xosd.h: present but cannot be compiled" >&5
  24675. echo "$as_me: WARNING: xosd.h: present but cannot be compiled" >&2;}
  24676.     { echo "$as_me:$LINENO: WARNING: xosd.h: check for missing prerequisite headers?" >&5
  24677. echo "$as_me: WARNING: xosd.h: check for missing prerequisite headers?" >&2;}
  24678.     { echo "$as_me:$LINENO: WARNING: xosd.h: proceeding with the preprocessor's result" >&5
  24679. echo "$as_me: WARNING: xosd.h: proceeding with the preprocessor's result" >&2;}
  24680.     (
  24681.       cat <<\_ASBOX
  24682. ## ------------------------------------ ##
  24683. ## Report this to bug-autoconf@gnu.org. ##
  24684. ## ------------------------------------ ##
  24685. _ASBOX
  24686.     ) |
  24687.       sed "s/^/$as_me: WARNING:     /" >&2
  24688.     ;;
  24689. esac
  24690. echo "$as_me:$LINENO: checking for xosd.h" >&5
  24691. echo $ECHO_N "checking for xosd.h... $ECHO_C" >&6
  24692. if test "${ac_cv_header_xosd_h+set}" = set; then
  24693.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24694. else
  24695.   ac_cv_header_xosd_h=$ac_header_preproc
  24696. fi
  24697. echo "$as_me:$LINENO: result: $ac_cv_header_xosd_h" >&5
  24698. echo "${ECHO_T}$ac_cv_header_xosd_h" >&6
  24699.  
  24700. fi
  24701. if test $ac_cv_header_xosd_h = yes; then
  24702.   have_xosd="true"
  24703. else
  24704.   have_xosd="false"
  24705. fi
  24706.  
  24707.  
  24708.   echo "$as_me:$LINENO: checking for xosd_set_offset in -lxosd" >&5
  24709. echo $ECHO_N "checking for xosd_set_offset in -lxosd... $ECHO_C" >&6
  24710. if test "${ac_cv_lib_xosd_xosd_set_offset+set}" = set; then
  24711.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24712. else
  24713.   ac_check_lib_save_LIBS=$LIBS
  24714. LIBS="-lxosd  $LIBS"
  24715. cat >conftest.$ac_ext <<_ACEOF
  24716. #line $LINENO "configure"
  24717. /* confdefs.h.  */
  24718. _ACEOF
  24719. cat confdefs.h >>conftest.$ac_ext
  24720. cat >>conftest.$ac_ext <<_ACEOF
  24721. /* end confdefs.h.  */
  24722.  
  24723. /* Override any gcc2 internal prototype to avoid an error.  */
  24724. #ifdef __cplusplus
  24725. extern "C"
  24726. #endif
  24727. /* We use char because int might match the return type of a gcc2
  24728.    builtin and then its argument prototype would still apply.  */
  24729. char xosd_set_offset ();
  24730. int
  24731. main ()
  24732. {
  24733. xosd_set_offset ();
  24734.   ;
  24735.   return 0;
  24736. }
  24737. _ACEOF
  24738. rm -f conftest.$ac_objext conftest$ac_exeext
  24739. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  24740.   (eval $ac_link) 2>&5
  24741.   ac_status=$?
  24742.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24743.   (exit $ac_status); } &&
  24744.          { ac_try='test -s conftest$ac_exeext'
  24745.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24746.   (eval $ac_try) 2>&5
  24747.   ac_status=$?
  24748.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24749.   (exit $ac_status); }; }; then
  24750.   ac_cv_lib_xosd_xosd_set_offset=yes
  24751. else
  24752.   echo "$as_me: failed program was:" >&5
  24753. sed 's/^/| /' conftest.$ac_ext >&5
  24754.  
  24755. ac_cv_lib_xosd_xosd_set_offset=no
  24756. fi
  24757. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  24758. LIBS=$ac_check_lib_save_LIBS
  24759. fi
  24760. echo "$as_me:$LINENO: result: $ac_cv_lib_xosd_xosd_set_offset" >&5
  24761. echo "${ECHO_T}$ac_cv_lib_xosd_xosd_set_offset" >&6
  24762. if test $ac_cv_lib_xosd_xosd_set_offset = yes; then
  24763.  
  24764. cat >>confdefs.h <<\_ACEOF
  24765. #define HAVE_XOSD_VERSION_1 1
  24766. _ACEOF
  24767.  
  24768. else
  24769.   echo "$as_me:$LINENO: checking for xosd_set_horizontal_offset in -lxosd" >&5
  24770. echo $ECHO_N "checking for xosd_set_horizontal_offset in -lxosd... $ECHO_C" >&6
  24771. if test "${ac_cv_lib_xosd_xosd_set_horizontal_offset+set}" = set; then
  24772.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24773. else
  24774.   ac_check_lib_save_LIBS=$LIBS
  24775. LIBS="-lxosd  $LIBS"
  24776. cat >conftest.$ac_ext <<_ACEOF
  24777. #line $LINENO "configure"
  24778. /* confdefs.h.  */
  24779. _ACEOF
  24780. cat confdefs.h >>conftest.$ac_ext
  24781. cat >>conftest.$ac_ext <<_ACEOF
  24782. /* end confdefs.h.  */
  24783.  
  24784. /* Override any gcc2 internal prototype to avoid an error.  */
  24785. #ifdef __cplusplus
  24786. extern "C"
  24787. #endif
  24788. /* We use char because int might match the return type of a gcc2
  24789.    builtin and then its argument prototype would still apply.  */
  24790. char xosd_set_horizontal_offset ();
  24791. int
  24792. main ()
  24793. {
  24794. xosd_set_horizontal_offset ();
  24795.   ;
  24796.   return 0;
  24797. }
  24798. _ACEOF
  24799. rm -f conftest.$ac_objext conftest$ac_exeext
  24800. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  24801.   (eval $ac_link) 2>&5
  24802.   ac_status=$?
  24803.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24804.   (exit $ac_status); } &&
  24805.          { ac_try='test -s conftest$ac_exeext'
  24806.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24807.   (eval $ac_try) 2>&5
  24808.   ac_status=$?
  24809.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24810.   (exit $ac_status); }; }; then
  24811.   ac_cv_lib_xosd_xosd_set_horizontal_offset=yes
  24812. else
  24813.   echo "$as_me: failed program was:" >&5
  24814. sed 's/^/| /' conftest.$ac_ext >&5
  24815.  
  24816. ac_cv_lib_xosd_xosd_set_horizontal_offset=no
  24817. fi
  24818. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  24819. LIBS=$ac_check_lib_save_LIBS
  24820. fi
  24821. echo "$as_me:$LINENO: result: $ac_cv_lib_xosd_xosd_set_horizontal_offset" >&5
  24822. echo "${ECHO_T}$ac_cv_lib_xosd_xosd_set_horizontal_offset" >&6
  24823. if test $ac_cv_lib_xosd_xosd_set_horizontal_offset = yes; then
  24824.  
  24825. cat >>confdefs.h <<\_ACEOF
  24826. #define HAVE_XOSD_VERSION_2 1
  24827. _ACEOF
  24828.  
  24829. else
  24830.   cat >conftest.$ac_ext <<_ACEOF
  24831. #line $LINENO "configure"
  24832. /* confdefs.h.  */
  24833. _ACEOF
  24834. cat confdefs.h >>conftest.$ac_ext
  24835. cat >>conftest.$ac_ext <<_ACEOF
  24836. /* end confdefs.h.  */
  24837. #include <xosd.h>
  24838. int
  24839. main ()
  24840. {
  24841. void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }
  24842.   ;
  24843.   return 0;
  24844. }
  24845. _ACEOF
  24846. rm -f conftest.$ac_objext
  24847. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  24848.   (eval $ac_compile) 2>&5
  24849.   ac_status=$?
  24850.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24851.   (exit $ac_status); } &&
  24852.          { ac_try='test -s conftest.$ac_objext'
  24853.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24854.   (eval $ac_try) 2>&5
  24855.   ac_status=$?
  24856.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24857.   (exit $ac_status); }; }; then
  24858.   :
  24859. else
  24860.   echo "$as_me: failed program was:" >&5
  24861. sed 's/^/| /' conftest.$ac_ext >&5
  24862.  
  24863.  
  24864. cat >>confdefs.h <<\_ACEOF
  24865. #define HAVE_XOSD_VERSION_0 1
  24866. _ACEOF
  24867.  
  24868. fi
  24869. rm -f conftest.$ac_objext conftest.$ac_ext
  24870. fi
  24871.  
  24872. fi
  24873.  
  24874.   if test "x${have_xosd}" = "xtrue"
  24875.   then
  24876.     PLUGINS="${PLUGINS} xosd"
  24877.     LDFLAGS_xosd="${LDFLAGS_xosd} -lxosd"
  24878.   fi
  24879. fi
  24880.  
  24881. # Check whether --enable-slp or --disable-slp was given.
  24882. if test "${enable_slp+set}" = set; then
  24883.   enableval="$enable_slp"
  24884.  
  24885. fi;
  24886. if test "x${enable_slp}" != "xno"
  24887. then
  24888.  
  24889. # Check whether --with-slp or --without-slp was given.
  24890. if test "${with_slp+set}" = set; then
  24891.   withval="$with_slp"
  24892.  
  24893. fi;
  24894.   if test "x${with_slp}" = x
  24895.   then
  24896.     if test "${ac_cv_header_slp_h+set}" = set; then
  24897.   echo "$as_me:$LINENO: checking for slp.h" >&5
  24898. echo $ECHO_N "checking for slp.h... $ECHO_C" >&6
  24899. if test "${ac_cv_header_slp_h+set}" = set; then
  24900.   echo $ECHO_N "(cached) $ECHO_C" >&6
  24901. fi
  24902. echo "$as_me:$LINENO: result: $ac_cv_header_slp_h" >&5
  24903. echo "${ECHO_T}$ac_cv_header_slp_h" >&6
  24904. else
  24905.   # Is the header compilable?
  24906. echo "$as_me:$LINENO: checking slp.h usability" >&5
  24907. echo $ECHO_N "checking slp.h usability... $ECHO_C" >&6
  24908. cat >conftest.$ac_ext <<_ACEOF
  24909. #line $LINENO "configure"
  24910. /* confdefs.h.  */
  24911. _ACEOF
  24912. cat confdefs.h >>conftest.$ac_ext
  24913. cat >>conftest.$ac_ext <<_ACEOF
  24914. /* end confdefs.h.  */
  24915. $ac_includes_default
  24916. #include <slp.h>
  24917. _ACEOF
  24918. rm -f conftest.$ac_objext
  24919. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  24920.   (eval $ac_compile) 2>&5
  24921.   ac_status=$?
  24922.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24923.   (exit $ac_status); } &&
  24924.          { ac_try='test -s conftest.$ac_objext'
  24925.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  24926.   (eval $ac_try) 2>&5
  24927.   ac_status=$?
  24928.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24929.   (exit $ac_status); }; }; then
  24930.   ac_header_compiler=yes
  24931. else
  24932.   echo "$as_me: failed program was:" >&5
  24933. sed 's/^/| /' conftest.$ac_ext >&5
  24934.  
  24935. ac_header_compiler=no
  24936. fi
  24937. rm -f conftest.$ac_objext conftest.$ac_ext
  24938. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  24939. echo "${ECHO_T}$ac_header_compiler" >&6
  24940.  
  24941. # Is the header present?
  24942. echo "$as_me:$LINENO: checking slp.h presence" >&5
  24943. echo $ECHO_N "checking slp.h presence... $ECHO_C" >&6
  24944. cat >conftest.$ac_ext <<_ACEOF
  24945. #line $LINENO "configure"
  24946. /* confdefs.h.  */
  24947. _ACEOF
  24948. cat confdefs.h >>conftest.$ac_ext
  24949. cat >>conftest.$ac_ext <<_ACEOF
  24950. /* end confdefs.h.  */
  24951. #include <slp.h>
  24952. _ACEOF
  24953. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  24954.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  24955.   ac_status=$?
  24956.   grep -v '^ *+' conftest.er1 >conftest.err
  24957.   rm -f conftest.er1
  24958.   cat conftest.err >&5
  24959.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  24960.   (exit $ac_status); } >/dev/null; then
  24961.   if test -s conftest.err; then
  24962.     ac_cpp_err=$ac_c_preproc_warn_flag
  24963.   else
  24964.     ac_cpp_err=
  24965.   fi
  24966. else
  24967.   ac_cpp_err=yes
  24968. fi
  24969. if test -z "$ac_cpp_err"; then
  24970.   ac_header_preproc=yes
  24971. else
  24972.   echo "$as_me: failed program was:" >&5
  24973. sed 's/^/| /' conftest.$ac_ext >&5
  24974.  
  24975.   ac_header_preproc=no
  24976. fi
  24977. rm -f conftest.err conftest.$ac_ext
  24978. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  24979. echo "${ECHO_T}$ac_header_preproc" >&6
  24980.  
  24981. # So?  What about this header?
  24982. case $ac_header_compiler:$ac_header_preproc in
  24983.   yes:no )
  24984.     { echo "$as_me:$LINENO: WARNING: slp.h: accepted by the compiler, rejected by the preprocessor!" >&5
  24985. echo "$as_me: WARNING: slp.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  24986.     { echo "$as_me:$LINENO: WARNING: slp.h: proceeding with the preprocessor's result" >&5
  24987. echo "$as_me: WARNING: slp.h: proceeding with the preprocessor's result" >&2;}
  24988.     (
  24989.       cat <<\_ASBOX
  24990. ## ------------------------------------ ##
  24991. ## Report this to bug-autoconf@gnu.org. ##
  24992. ## ------------------------------------ ##
  24993. _ASBOX
  24994.     ) |
  24995.       sed "s/^/$as_me: WARNING:     /" >&2
  24996.     ;;
  24997.   no:yes )
  24998.     { echo "$as_me:$LINENO: WARNING: slp.h: present but cannot be compiled" >&5
  24999. echo "$as_me: WARNING: slp.h: present but cannot be compiled" >&2;}
  25000.     { echo "$as_me:$LINENO: WARNING: slp.h: check for missing prerequisite headers?" >&5
  25001. echo "$as_me: WARNING: slp.h: check for missing prerequisite headers?" >&2;}
  25002.     { echo "$as_me:$LINENO: WARNING: slp.h: proceeding with the preprocessor's result" >&5
  25003. echo "$as_me: WARNING: slp.h: proceeding with the preprocessor's result" >&2;}
  25004.     (
  25005.       cat <<\_ASBOX
  25006. ## ------------------------------------ ##
  25007. ## Report this to bug-autoconf@gnu.org. ##
  25008. ## ------------------------------------ ##
  25009. _ASBOX
  25010.     ) |
  25011.       sed "s/^/$as_me: WARNING:     /" >&2
  25012.     ;;
  25013. esac
  25014. echo "$as_me:$LINENO: checking for slp.h" >&5
  25015. echo $ECHO_N "checking for slp.h... $ECHO_C" >&6
  25016. if test "${ac_cv_header_slp_h+set}" = set; then
  25017.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25018. else
  25019.   ac_cv_header_slp_h=$ac_header_preproc
  25020. fi
  25021. echo "$as_me:$LINENO: result: $ac_cv_header_slp_h" >&5
  25022. echo "${ECHO_T}$ac_cv_header_slp_h" >&6
  25023.  
  25024. fi
  25025. if test $ac_cv_header_slp_h = yes; then
  25026.   have_slp="true"
  25027. else
  25028.   have_slp="false"
  25029. fi
  25030.  
  25031.  
  25032.     if test "x${have_slp}" = "xtrue"
  25033.     then
  25034.       PLUGINS="${PLUGINS} slp"
  25035.       LDFLAGS_slp="-lslp ${LDFLAGS_slp}"
  25036.     fi
  25037.   else
  25038.     echo "$as_me:$LINENO: checking for slp headers in ${with_slp}" >&5
  25039. echo $ECHO_N "checking for slp headers in ${with_slp}... $ECHO_C" >&6
  25040.     if test -f ${with_slp}/slp.h
  25041.     then
  25042.             echo "$as_me:$LINENO: result: yes" >&5
  25043. echo "${ECHO_T}yes" >&6
  25044.       PLUGINS="${PLUGINS} slp"
  25045.       LDFLAGS_slp="-L${with_slp} -lslp ${LDFLAGS_slp}"
  25046.       CPPFLAGS_slp="${CPPFLAGS_slp} -I${with_slp}"
  25047.     else
  25048.             echo "$as_me:$LINENO: result: no" >&5
  25049. echo "${ECHO_T}no" >&6
  25050.       { { echo "$as_me:$LINENO: error: cannot find ${with_slp}/slp.h" >&5
  25051. echo "$as_me: error: cannot find ${with_slp}/slp.h" >&2;}
  25052.    { (exit 1); exit 1; }; }
  25053.     fi
  25054.   fi
  25055. fi
  25056.  
  25057. # Check whether --enable-lirc or --disable-lirc was given.
  25058. if test "${enable_lirc+set}" = set; then
  25059.   enableval="$enable_lirc"
  25060.  
  25061. fi;
  25062. if test "x${enable_lirc}" = "xyes"
  25063. then
  25064.   if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
  25065.   echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
  25066. echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6
  25067. if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
  25068.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25069. fi
  25070. echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
  25071. echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6
  25072. else
  25073.   # Is the header compilable?
  25074. echo "$as_me:$LINENO: checking lirc/lirc_client.h usability" >&5
  25075. echo $ECHO_N "checking lirc/lirc_client.h usability... $ECHO_C" >&6
  25076. cat >conftest.$ac_ext <<_ACEOF
  25077. #line $LINENO "configure"
  25078. /* confdefs.h.  */
  25079. _ACEOF
  25080. cat confdefs.h >>conftest.$ac_ext
  25081. cat >>conftest.$ac_ext <<_ACEOF
  25082. /* end confdefs.h.  */
  25083. $ac_includes_default
  25084. #include <lirc/lirc_client.h>
  25085. _ACEOF
  25086. rm -f conftest.$ac_objext
  25087. if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
  25088.   (eval $ac_compile) 2>&5
  25089.   ac_status=$?
  25090.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25091.   (exit $ac_status); } &&
  25092.          { ac_try='test -s conftest.$ac_objext'
  25093.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  25094.   (eval $ac_try) 2>&5
  25095.   ac_status=$?
  25096.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25097.   (exit $ac_status); }; }; then
  25098.   ac_header_compiler=yes
  25099. else
  25100.   echo "$as_me: failed program was:" >&5
  25101. sed 's/^/| /' conftest.$ac_ext >&5
  25102.  
  25103. ac_header_compiler=no
  25104. fi
  25105. rm -f conftest.$ac_objext conftest.$ac_ext
  25106. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  25107. echo "${ECHO_T}$ac_header_compiler" >&6
  25108.  
  25109. # Is the header present?
  25110. echo "$as_me:$LINENO: checking lirc/lirc_client.h presence" >&5
  25111. echo $ECHO_N "checking lirc/lirc_client.h presence... $ECHO_C" >&6
  25112. cat >conftest.$ac_ext <<_ACEOF
  25113. #line $LINENO "configure"
  25114. /* confdefs.h.  */
  25115. _ACEOF
  25116. cat confdefs.h >>conftest.$ac_ext
  25117. cat >>conftest.$ac_ext <<_ACEOF
  25118. /* end confdefs.h.  */
  25119. #include <lirc/lirc_client.h>
  25120. _ACEOF
  25121. if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
  25122.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  25123.   ac_status=$?
  25124.   grep -v '^ *+' conftest.er1 >conftest.err
  25125.   rm -f conftest.er1
  25126.   cat conftest.err >&5
  25127.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25128.   (exit $ac_status); } >/dev/null; then
  25129.   if test -s conftest.err; then
  25130.     ac_cpp_err=$ac_c_preproc_warn_flag
  25131.   else
  25132.     ac_cpp_err=
  25133.   fi
  25134. else
  25135.   ac_cpp_err=yes
  25136. fi
  25137. if test -z "$ac_cpp_err"; then
  25138.   ac_header_preproc=yes
  25139. else
  25140.   echo "$as_me: failed program was:" >&5
  25141. sed 's/^/| /' conftest.$ac_ext >&5
  25142.  
  25143.   ac_header_preproc=no
  25144. fi
  25145. rm -f conftest.err conftest.$ac_ext
  25146. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  25147. echo "${ECHO_T}$ac_header_preproc" >&6
  25148.  
  25149. # So?  What about this header?
  25150. case $ac_header_compiler:$ac_header_preproc in
  25151.   yes:no )
  25152.     { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&5
  25153. echo "$as_me: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  25154.     { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&5
  25155. echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&2;}
  25156.     (
  25157.       cat <<\_ASBOX
  25158. ## ------------------------------------ ##
  25159. ## Report this to bug-autoconf@gnu.org. ##
  25160. ## ------------------------------------ ##
  25161. _ASBOX
  25162.     ) |
  25163.       sed "s/^/$as_me: WARNING:     /" >&2
  25164.     ;;
  25165.   no:yes )
  25166.     { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&5
  25167. echo "$as_me: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&2;}
  25168.     { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: check for missing prerequisite headers?" >&5
  25169. echo "$as_me: WARNING: lirc/lirc_client.h: check for missing prerequisite headers?" >&2;}
  25170.     { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&5
  25171. echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&2;}
  25172.     (
  25173.       cat <<\_ASBOX
  25174. ## ------------------------------------ ##
  25175. ## Report this to bug-autoconf@gnu.org. ##
  25176. ## ------------------------------------ ##
  25177. _ASBOX
  25178.     ) |
  25179.       sed "s/^/$as_me: WARNING:     /" >&2
  25180.     ;;
  25181. esac
  25182. echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
  25183. echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6
  25184. if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
  25185.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25186. else
  25187.   ac_cv_header_lirc_lirc_client_h=$ac_header_preproc
  25188. fi
  25189. echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
  25190. echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6
  25191.  
  25192. fi
  25193. if test $ac_cv_header_lirc_lirc_client_h = yes; then
  25194.   echo "$as_me:$LINENO: checking for lirc_init in -llirc_client" >&5
  25195. echo $ECHO_N "checking for lirc_init in -llirc_client... $ECHO_C" >&6
  25196. if test "${ac_cv_lib_lirc_client_lirc_init+set}" = set; then
  25197.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25198. else
  25199.   ac_check_lib_save_LIBS=$LIBS
  25200. LIBS="-llirc_client  $LIBS"
  25201. cat >conftest.$ac_ext <<_ACEOF
  25202. #line $LINENO "configure"
  25203. /* confdefs.h.  */
  25204. _ACEOF
  25205. cat confdefs.h >>conftest.$ac_ext
  25206. cat >>conftest.$ac_ext <<_ACEOF
  25207. /* end confdefs.h.  */
  25208.  
  25209. /* Override any gcc2 internal prototype to avoid an error.  */
  25210. #ifdef __cplusplus
  25211. extern "C"
  25212. #endif
  25213. /* We use char because int might match the return type of a gcc2
  25214.    builtin and then its argument prototype would still apply.  */
  25215. char lirc_init ();
  25216. int
  25217. main ()
  25218. {
  25219. lirc_init ();
  25220.   ;
  25221.   return 0;
  25222. }
  25223. _ACEOF
  25224. rm -f conftest.$ac_objext conftest$ac_exeext
  25225. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  25226.   (eval $ac_link) 2>&5
  25227.   ac_status=$?
  25228.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25229.   (exit $ac_status); } &&
  25230.          { ac_try='test -s conftest$ac_exeext'
  25231.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  25232.   (eval $ac_try) 2>&5
  25233.   ac_status=$?
  25234.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25235.   (exit $ac_status); }; }; then
  25236.   ac_cv_lib_lirc_client_lirc_init=yes
  25237. else
  25238.   echo "$as_me: failed program was:" >&5
  25239. sed 's/^/| /' conftest.$ac_ext >&5
  25240.  
  25241. ac_cv_lib_lirc_client_lirc_init=no
  25242. fi
  25243. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  25244. LIBS=$ac_check_lib_save_LIBS
  25245. fi
  25246. echo "$as_me:$LINENO: result: $ac_cv_lib_lirc_client_lirc_init" >&5
  25247. echo "${ECHO_T}$ac_cv_lib_lirc_client_lirc_init" >&6
  25248. if test $ac_cv_lib_lirc_client_lirc_init = yes; then
  25249.   have_lirc="true"
  25250. else
  25251.   have_lirc="false"
  25252. fi
  25253.  
  25254. else
  25255.   have_lirc="false"
  25256. fi
  25257.  
  25258.  
  25259.   if test "x${have_lirc}" = "xtrue"
  25260.   then
  25261.     PLUGINS="${PLUGINS} lirc"
  25262.     LDFLAGS_lirc="${LDFLAGS_lirc} -llirc_client"
  25263.   fi
  25264. fi
  25265.  
  25266.  
  25267. # Check whether --with- or --without- was given.
  25268. if test "${with_+set}" = set; then
  25269.   withval="$with_"
  25270.  
  25271. fi;
  25272.  
  25273.  
  25274. # Check whether --with-words or --without-words was given.
  25275. if test "${with_words+set}" = set; then
  25276.   withval="$with_words"
  25277.  
  25278. fi;
  25279.   case "x${with_words}" in
  25280.     xbig)
  25281.       ac_cv_c_bigendian=yes
  25282.       ;;
  25283.     xlittle)
  25284.       ac_cv_c_bigendian=no
  25285.       ;;
  25286.     *)
  25287.                   echo "$as_me:$LINENO: checking whether the byte order is big-endian" >&5
  25288. echo $ECHO_N "checking whether the byte order is big-endian... $ECHO_C" >&6
  25289. if test "${ac_cv_c_bigendian+set}" = set; then
  25290.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25291. else
  25292.   ac_cv_c_bigendian="unknown"
  25293.         cat >conftest.c <<EOF
  25294.         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
  25295.         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
  25296.         void _a(void) { char*s = (char*)am; s = (char *)ai; }
  25297.         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
  25298.         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
  25299.         void _e(void) { char*s = (char*)em; s = (char*)ei; }
  25300.         int main(void) { _a(); _e(); return 0; }
  25301. EOF
  25302.  
  25303.         if test -f conftest.c
  25304.         then
  25305.           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
  25306.               && test -f conftest.o
  25307.           then
  25308.             if test "`strings conftest.o | grep BIGenDianSyS`"
  25309.             then
  25310.               ac_cv_c_bigendian="yes"
  25311.             fi
  25312.             if test "`strings conftest.o | grep LiTTleEnDian`"
  25313.             then
  25314.               ac_cv_c_bigendian="no"
  25315.             fi
  25316.           fi
  25317.         fi
  25318.  
  25319. fi
  25320. echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
  25321. echo "${ECHO_T}$ac_cv_c_bigendian" >&6
  25322.       if test "x${ac_cv_c_bigendian}" = "xunknown"
  25323.       then
  25324.         { { echo "$as_me:$LINENO: error: Could not guess endianness, please use --with-words" >&5
  25325. echo "$as_me: error: Could not guess endianness, please use --with-words" >&2;}
  25326.    { (exit 1); exit 1; }; }
  25327.       fi
  25328.       ;;
  25329.   esac
  25330. if test "${ac_cv_c_bigendian}" = "yes"
  25331. then
  25332.  
  25333. cat >>confdefs.h <<\_ACEOF
  25334. #define WORDS_BIGENDIAN 1
  25335. _ACEOF
  25336.  
  25337. fi
  25338.  
  25339. mozilla=false
  25340. # Check whether --enable-mozilla or --disable-mozilla was given.
  25341. if test "${enable_mozilla+set}" = set; then
  25342.   enableval="$enable_mozilla"
  25343.  
  25344. fi;
  25345. if test "x${enable_mozilla}" = "xyes"
  25346. then
  25347.   # Extract the first word of "mozilla-config", so it can be a program name with args.
  25348. set dummy mozilla-config; ac_word=$2
  25349. echo "$as_me:$LINENO: checking for $ac_word" >&5
  25350. echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
  25351. if test "${ac_cv_path_MOZILLA_CONFIG+set}" = set; then
  25352.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25353. else
  25354.   case $MOZILLA_CONFIG in
  25355.   [\\/]* | ?:[\\/]*)
  25356.   ac_cv_path_MOZILLA_CONFIG="$MOZILLA_CONFIG" # Let the user override the test with a path.
  25357.   ;;
  25358.   *)
  25359.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  25360. for as_dir in $PATH
  25361. do
  25362.   IFS=$as_save_IFS
  25363.   test -z "$as_dir" && as_dir=.
  25364.   for ac_exec_ext in '' $ac_executable_extensions; do
  25365.   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  25366.     ac_cv_path_MOZILLA_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  25367.     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  25368.     break 2
  25369.   fi
  25370. done
  25371. done
  25372.  
  25373.   test -z "$ac_cv_path_MOZILLA_CONFIG" && ac_cv_path_MOZILLA_CONFIG="no"
  25374.   ;;
  25375. esac
  25376. fi
  25377. MOZILLA_CONFIG=$ac_cv_path_MOZILLA_CONFIG
  25378.  
  25379. if test -n "$MOZILLA_CONFIG"; then
  25380.   echo "$as_me:$LINENO: result: $MOZILLA_CONFIG" >&5
  25381. echo "${ECHO_T}$MOZILLA_CONFIG" >&6
  25382. else
  25383.   echo "$as_me:$LINENO: result: no" >&5
  25384. echo "${ECHO_T}no" >&6
  25385. fi
  25386.  
  25387.   if test "x${MOZILLA_CONFIG}" != "xno"
  25388.   then
  25389.     if test "x${SYS}" != "xmingw32"; then
  25390.       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
  25391.       echo "$as_me:$LINENO: checking for XtStrings in -lXt" >&5
  25392. echo $ECHO_N "checking for XtStrings in -lXt... $ECHO_C" >&6
  25393. if test "${ac_cv_lib_Xt_XtStrings+set}" = set; then
  25394.   echo $ECHO_N "(cached) $ECHO_C" >&6
  25395. else
  25396.   ac_check_lib_save_LIBS=$LIBS
  25397. LIBS="-lXt  $LIBS"
  25398. cat >conftest.$ac_ext <<_ACEOF
  25399. #line $LINENO "configure"
  25400. /* confdefs.h.  */
  25401. _ACEOF
  25402. cat confdefs.h >>conftest.$ac_ext
  25403. cat >>conftest.$ac_ext <<_ACEOF
  25404. /* end confdefs.h.  */
  25405.  
  25406. /* Override any gcc2 internal prototype to avoid an error.  */
  25407. #ifdef __cplusplus
  25408. extern "C"
  25409. #endif
  25410. /* We use char because int might match the return type of a gcc2
  25411.    builtin and then its argument prototype would still apply.  */
  25412. char XtStrings ();
  25413. int
  25414. main ()
  25415. {
  25416. XtStrings ();
  25417.   ;
  25418.   return 0;
  25419. }
  25420. _ACEOF
  25421. rm -f conftest.$ac_objext conftest$ac_exeext
  25422. if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  25423.   (eval $ac_link) 2>&5
  25424.   ac_status=$?
  25425.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25426.   (exit $ac_status); } &&
  25427.          { ac_try='test -s conftest$ac_exeext'
  25428.   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
  25429.   (eval $ac_try) 2>&5
  25430.   ac_status=$?
  25431.   echo "$as_me:$LINENO: \$? = $ac_status" >&5
  25432.   (exit $ac_status); }; }; then
  25433.   ac_cv_lib_Xt_XtStrings=yes
  25434. else
  25435.   echo "$as_me: failed program was:" >&5
  25436. sed 's/^/| /' conftest.$ac_ext >&5
  25437.  
  25438. ac_cv_lib_Xt_XtStrings=no
  25439. fi
  25440. rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
  25441. LIBS=$ac_check_lib_save_LIBS
  25442. fi
  25443. echo "$as_me:$LINENO: result: $ac_cv_lib_Xt_XtStrings" >&5
  25444. echo "${ECHO_T}$ac_cv_lib_Xt_XtStrings" >&6
  25445. if test $ac_cv_lib_Xt_XtStrings = yes; then
  25446.  
  25447.         LDFLAGS_mozilla="${LDFLAGS_mozilla} -L${x_libraries} -lXt"
  25448.  
  25449. fi
  25450.  
  25451.       LDFLAGS="${LDFLAGS_save}"
  25452.     fi
  25453.     mozilla=:
  25454.         CPPFLAGS_mozilla="${CPPFLAGS_mozilla} `${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`"
  25455.     #[CPPFLAGS_mozilla="${CPPFLAGS_mozilla} `${MOZILLA_CONFIG} --cflags plugin xpcom java --defines | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`"]
  25456.     LDFLAGS_mozilla="${LDFLAGS_mozilla} `${MOZILLA_CONFIG} --libs plugin xpcom`"
  25457.         if test "x${XPIDL}" = "x" -o ! -x "${XPIDL}"
  25458.     then
  25459.       XPIDL="/usr/lib/mozilla/xpidl"
  25460.     fi
  25461.   fi
  25462. fi
  25463.  
  25464.  
  25465. if ${mozilla}; then
  25466.   BUILD_MOZILLA_TRUE=
  25467.   BUILD_MOZILLA_FALSE='#'
  25468. else
  25469.   BUILD_MOZILLA_TRUE='#'
  25470.   BUILD_MOZILLA_FALSE=
  25471. fi
  25472.  
  25473.  
  25474. # Check whether --enable-testsuite or --disable-testsuite was given.
  25475. if test "${enable_testsuite+set}" = set; then
  25476.   enableval="$enable_testsuite"
  25477.  
  25478. fi;
  25479. if test "x${enable_testsuite}" = "xyes"
  25480. then
  25481.   TESTS="test1 test2 test3 test4"
  25482.  
  25483.     CXXFLAGS_test2="${CXXFLAGS_test2}"
  25484.   OBJCFLAGS_test3="${OBJCFLAGS_test3}"
  25485.     LDFLAGS_test3="${LDFLAGS_test3} -lobjc"
  25486.  
  25487.   PLUGINS="${PLUGINS} ${TESTS}"
  25488.   #BUILTINS="${BUILTINS} ${TESTS}"
  25489. fi
  25490.  
  25491. if test "x${NEED_GTK_MAIN}" != "xno"
  25492. then
  25493.     PLUGINS="${PLUGINS} gtk_main"
  25494.     CFLAGS_gtk="${CFLAGS_gtk} -DNEED_GTK_MAIN"
  25495.     CFLAGS_familiar="${CFLAGS_familiar} -DNEED_GTK_MAIN"
  25496.     CFLAGS_gtk_main="${CFLAGS_gtk_main} ${CFLAGS_gtk} ${CFLAGS_familiar}"
  25497.     LDFLAGS_gtk_main="${LDFLAGS_gtk_main} ${LDFLAGS_gtk} ${LDFLAGS_familiar}"
  25498. fi
  25499.  
  25500. if test "x${NEED_GNOME_MAIN}" != "xno"
  25501. then
  25502.     PLUGINS="${PLUGINS} gnome_main"
  25503.     CFLAGS_gnome_main="${CFLAGS_gnome_main} ${CFLAGS_gtk} ${CFLAGS_familiar} ${CFLAGS_gnome}"
  25504.     LDFLAGS_gnome_main="${LDFLAGS_gnome_main} ${LDFLAGS_gtk} ${LDFLAGS_familiar} ${LDFLAGS_gnome}"
  25505. fi
  25506.  
  25507. if test "x${NEED_GTK2_MAIN}" != "xno"
  25508. then
  25509.     PLUGINS="${PLUGINS} gtk2_main"
  25510.     CFLAGS_gtk2="${CFLAGS_gtk2} -DNEED_GTK2_MAIN"
  25511.     CFLAGS_gtk2_main="${CFLAGS_gtk2_main} ${CFLAGS_gtk2}"
  25512.     LDFLAGS_gtk2_main="${LDFLAGS_gtk2_main} ${LDFLAGS_gtk2}"
  25513. fi
  25514.  
  25515. if test "x${NEED_GNOME2_MAIN}" != "xno"
  25516. then
  25517.     PLUGINS="${PLUGINS} gnome2_main"
  25518.     CFLAGS_gnome2_main="${CFLAGS_gnome2_main} ${CFLAGS_gtk2} ${CFLAGS_gnome2}"
  25519.     LDFLAGS_gnome2_main="${LDFLAGS_gnome2_main} ${LDFLAGS_gtk2} ${LDFLAGS_gnome2}"
  25520. fi
  25521.  
  25522. if test "x${NEED_QTE_MAIN}" != "xno"
  25523. then
  25524.     PLUGINS="${PLUGINS} qte_main"
  25525.     CPPFLAGS_qte="${CPPFLAGS_qte} -DNEED_QTE_MAIN"
  25526.     CPPFLAGS_opie="${CPPFLAGS_opie} -DNEED_QTE_MAIN"
  25527.     CFLAGS_vout_sdl="${CFLAGS_vout_sdl} -DNEED_QTE_MAIN"
  25528.     CPPFLAGS_qte_main="${CFLAGS_qte_main} ${CPPFLAGS_qte}"
  25529.     LDFLAGS_qte_main="${LDFLAGS_qte_main} ${LDFLAGS_qte}"
  25530. fi
  25531.  
  25532.  
  25533. builtin_support=false
  25534. plugin_support=:
  25535.  
  25536. # Check whether --enable-plugins or --disable-plugins was given.
  25537. if test "${enable_plugins+set}" = set; then
  25538.   enableval="$enable_plugins"
  25539.   if test "x${enable_plugins}" = "xno"
  25540.    then
  25541.      plugin_support=false
  25542.    fi
  25543. fi;
  25544.  
  25545. if test "x${ac_cv_header_dlfcn_h}" = "xno" -a "x${ac_cv_header_image_h}" = "xno" -a "x${SYS}" != "xmingw32"
  25546. then
  25547.   echo "*** Your system doesn't have plugin support. All plugins will be built"
  25548.   echo "statically."
  25549.   plugin_support=false
  25550. fi
  25551.  
  25552. if ${plugin_support}
  25553. then
  25554.   for plugin in `echo ${PLUGINS}`
  25555.   do
  25556.     eval "${plugin}_plugin=yes"
  25557.   done
  25558. else
  25559.   BUILTINS="${BUILTINS} ${PLUGINS}"
  25560.   PLUGINS=
  25561. fi
  25562.  
  25563.  
  25564. if ${plugin_support}; then
  25565.   HAVE_PLUGINS_TRUE=
  25566.   HAVE_PLUGINS_FALSE='#'
  25567. else
  25568.   HAVE_PLUGINS_TRUE='#'
  25569.   HAVE_PLUGINS_FALSE=
  25570. fi
  25571.  
  25572.  
  25573. if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
  25574. then
  25575.   builtin_support=:
  25576.   for builtin in `echo ${BUILTINS}`
  25577.   do
  25578.     eval "${builtin}_builtin=yes"
  25579.   done
  25580. fi
  25581.  
  25582.  
  25583. if ${builtin_support}; then
  25584.   HAVE_BUILTINS_TRUE=
  25585.   HAVE_BUILTINS_FALSE='#'
  25586. else
  25587.   HAVE_BUILTINS_TRUE='#'
  25588.   HAVE_BUILTINS_FALSE=
  25589. fi
  25590.  
  25591.  
  25592.  
  25593.  
  25594. if test x$access_file_plugin = xyes; then
  25595.   access_file_plugin_TRUE=
  25596.   access_file_plugin_FALSE='#'
  25597. else
  25598.   access_file_plugin_TRUE='#'
  25599.   access_file_plugin_FALSE=
  25600. fi
  25601.  
  25602.  
  25603.  
  25604. if test x$access_file_builtin = xyes; then
  25605.   access_file_builtin_TRUE=
  25606.   access_file_builtin_FALSE='#'
  25607. else
  25608.   access_file_builtin_TRUE='#'
  25609.   access_file_builtin_FALSE=
  25610. fi
  25611.  
  25612.  
  25613.  
  25614. if test x$access_directory_plugin = xyes; then
  25615.   access_directory_plugin_TRUE=
  25616.   access_directory_plugin_FALSE='#'
  25617. else
  25618.   access_directory_plugin_TRUE='#'
  25619.   access_directory_plugin_FALSE=
  25620. fi
  25621.  
  25622.  
  25623.  
  25624. if test x$access_directory_builtin = xyes; then
  25625.   access_directory_builtin_TRUE=
  25626.   access_directory_builtin_FALSE='#'
  25627. else
  25628.   access_directory_builtin_TRUE='#'
  25629.   access_directory_builtin_FALSE=
  25630. fi
  25631.  
  25632.  
  25633.  
  25634.  
  25635. if test x$access_udp_plugin = xyes; then
  25636.   access_udp_plugin_TRUE=
  25637.   access_udp_plugin_FALSE='#'
  25638. else
  25639.   access_udp_plugin_TRUE='#'
  25640.   access_udp_plugin_FALSE=
  25641. fi
  25642.  
  25643.  
  25644.  
  25645. if test x$access_udp_builtin = xyes; then
  25646.   access_udp_builtin_TRUE=
  25647.   access_udp_builtin_FALSE='#'
  25648. else
  25649.   access_udp_builtin_TRUE='#'
  25650.   access_udp_builtin_FALSE=
  25651. fi
  25652.  
  25653.  
  25654.  
  25655.  
  25656. if test x$access_http_plugin = xyes; then
  25657.   access_http_plugin_TRUE=
  25658.   access_http_plugin_FALSE='#'
  25659. else
  25660.   access_http_plugin_TRUE='#'
  25661.   access_http_plugin_FALSE=
  25662. fi
  25663.  
  25664.  
  25665.  
  25666. if test x$access_http_builtin = xyes; then
  25667.   access_http_builtin_TRUE=
  25668.   access_http_builtin_FALSE='#'
  25669. else
  25670.   access_http_builtin_TRUE='#'
  25671.   access_http_builtin_FALSE=
  25672. fi
  25673.  
  25674.  
  25675.  
  25676.  
  25677. if test x$access_ftp_plugin = xyes; then
  25678.   access_ftp_plugin_TRUE=
  25679.   access_ftp_plugin_FALSE='#'
  25680. else
  25681.   access_ftp_plugin_TRUE='#'
  25682.   access_ftp_plugin_FALSE=
  25683. fi
  25684.  
  25685.  
  25686.  
  25687. if test x$access_ftp_builtin = xyes; then
  25688.   access_ftp_builtin_TRUE=
  25689.   access_ftp_builtin_FALSE='#'
  25690. else
  25691.   access_ftp_builtin_TRUE='#'
  25692.   access_ftp_builtin_FALSE=
  25693. fi
  25694.  
  25695.  
  25696.  
  25697.  
  25698.  
  25699. if test x$slp_plugin = xyes; then
  25700.   slp_plugin_TRUE=
  25701.   slp_plugin_FALSE='#'
  25702. else
  25703.   slp_plugin_TRUE='#'
  25704.   slp_plugin_FALSE=
  25705. fi
  25706.  
  25707.  
  25708.  
  25709. if test x$slp_builtin = xyes; then
  25710.   slp_builtin_TRUE=
  25711.   slp_builtin_FALSE='#'
  25712. else
  25713.   slp_builtin_TRUE='#'
  25714.   slp_builtin_FALSE=
  25715. fi
  25716.  
  25717.  
  25718.  
  25719.  
  25720.  
  25721. if test x$dvd_plugin = xyes; then
  25722.   dvd_plugin_TRUE=
  25723.   dvd_plugin_FALSE='#'
  25724. else
  25725.   dvd_plugin_TRUE='#'
  25726.   dvd_plugin_FALSE=
  25727. fi
  25728.  
  25729.  
  25730.  
  25731. if test x$dvd_builtin = xyes; then
  25732.   dvd_builtin_TRUE=
  25733.   dvd_builtin_FALSE='#'
  25734. else
  25735.   dvd_builtin_TRUE='#'
  25736.   dvd_builtin_FALSE=
  25737. fi
  25738.  
  25739.  
  25740.  
  25741.  
  25742.  
  25743. if test x$dvdplay_plugin = xyes; then
  25744.   dvdplay_plugin_TRUE=
  25745.   dvdplay_plugin_FALSE='#'
  25746. else
  25747.   dvdplay_plugin_TRUE='#'
  25748.   dvdplay_plugin_FALSE=
  25749. fi
  25750.  
  25751.  
  25752.  
  25753. if test x$dvdplay_builtin = xyes; then
  25754.   dvdplay_builtin_TRUE=
  25755.   dvdplay_builtin_FALSE='#'
  25756. else
  25757.   dvdplay_builtin_TRUE='#'
  25758.   dvdplay_builtin_FALSE=
  25759. fi
  25760.  
  25761.  
  25762.  
  25763.  
  25764.  
  25765. if test x$dvdread_plugin = xyes; then
  25766.   dvdread_plugin_TRUE=
  25767.   dvdread_plugin_FALSE='#'
  25768. else
  25769.   dvdread_plugin_TRUE='#'
  25770.   dvdread_plugin_FALSE=
  25771. fi
  25772.  
  25773.  
  25774.  
  25775. if test x$dvdread_builtin = xyes; then
  25776.   dvdread_builtin_TRUE=
  25777.   dvdread_builtin_FALSE='#'
  25778. else
  25779.   dvdread_builtin_TRUE='#'
  25780.   dvdread_builtin_FALSE=
  25781. fi
  25782.  
  25783.  
  25784.  
  25785.  
  25786. if test x$access_mms_plugin = xyes; then
  25787.   access_mms_plugin_TRUE=
  25788.   access_mms_plugin_FALSE='#'
  25789. else
  25790.   access_mms_plugin_TRUE='#'
  25791.   access_mms_plugin_FALSE=
  25792. fi
  25793.  
  25794.  
  25795.  
  25796. if test x$access_mms_builtin = xyes; then
  25797.   access_mms_builtin_TRUE=
  25798.   access_mms_builtin_FALSE='#'
  25799. else
  25800.   access_mms_builtin_TRUE='#'
  25801.   access_mms_builtin_FALSE=
  25802. fi
  25803.  
  25804.  
  25805.  
  25806. if test x$satellite_plugin = xyes; then
  25807.   satellite_plugin_TRUE=
  25808.   satellite_plugin_FALSE='#'
  25809. else
  25810.   satellite_plugin_TRUE='#'
  25811.   satellite_plugin_FALSE=
  25812. fi
  25813.  
  25814.  
  25815.  
  25816. if test x$satellite_builtin = xyes; then
  25817.   satellite_builtin_TRUE=
  25818.   satellite_builtin_FALSE='#'
  25819. else
  25820.   satellite_builtin_TRUE='#'
  25821.   satellite_builtin_FALSE=
  25822. fi
  25823.  
  25824.  
  25825.  
  25826. if test x$v4l_plugin = xyes; then
  25827.   v4l_plugin_TRUE=
  25828.   v4l_plugin_FALSE='#'
  25829. else
  25830.   v4l_plugin_TRUE='#'
  25831.   v4l_plugin_FALSE=
  25832. fi
  25833.  
  25834.  
  25835.  
  25836. if test x$v4l_builtin = xyes; then
  25837.   v4l_builtin_TRUE=
  25838.   v4l_builtin_FALSE='#'
  25839. else
  25840.   v4l_builtin_TRUE='#'
  25841.   v4l_builtin_FALSE=
  25842. fi
  25843.  
  25844.  
  25845.  
  25846.  
  25847. if test x$vcd_plugin = xyes; then
  25848.   vcd_plugin_TRUE=
  25849.   vcd_plugin_FALSE='#'
  25850. else
  25851.   vcd_plugin_TRUE='#'
  25852.   vcd_plugin_FALSE=
  25853. fi
  25854.  
  25855.  
  25856.  
  25857. if test x$vcd_builtin = xyes; then
  25858.   vcd_builtin_TRUE=
  25859.   vcd_builtin_FALSE='#'
  25860. else
  25861.   vcd_builtin_TRUE='#'
  25862.   vcd_builtin_FALSE=
  25863. fi
  25864.  
  25865.  
  25866.  
  25867. if test x$access_output_dummy_plugin = xyes; then
  25868.   access_output_dummy_plugin_TRUE=
  25869.   access_output_dummy_plugin_FALSE='#'
  25870. else
  25871.   access_output_dummy_plugin_TRUE='#'
  25872.   access_output_dummy_plugin_FALSE=
  25873. fi
  25874.  
  25875.  
  25876.  
  25877. if test x$access_output_dummy_builtin = xyes; then
  25878.   access_output_dummy_builtin_TRUE=
  25879.   access_output_dummy_builtin_FALSE='#'
  25880. else
  25881.   access_output_dummy_builtin_TRUE='#'
  25882.   access_output_dummy_builtin_FALSE=
  25883. fi
  25884.  
  25885.  
  25886.  
  25887. if test x$access_output_file_plugin = xyes; then
  25888.   access_output_file_plugin_TRUE=
  25889.   access_output_file_plugin_FALSE='#'
  25890. else
  25891.   access_output_file_plugin_TRUE='#'
  25892.   access_output_file_plugin_FALSE=
  25893. fi
  25894.  
  25895.  
  25896.  
  25897. if test x$access_output_file_builtin = xyes; then
  25898.   access_output_file_builtin_TRUE=
  25899.   access_output_file_builtin_FALSE='#'
  25900. else
  25901.   access_output_file_builtin_TRUE='#'
  25902.   access_output_file_builtin_FALSE=
  25903. fi
  25904.  
  25905.  
  25906.  
  25907.  
  25908. if test x$access_output_udp_plugin = xyes; then
  25909.   access_output_udp_plugin_TRUE=
  25910.   access_output_udp_plugin_FALSE='#'
  25911. else
  25912.   access_output_udp_plugin_TRUE='#'
  25913.   access_output_udp_plugin_FALSE=
  25914. fi
  25915.  
  25916.  
  25917.  
  25918. if test x$access_output_udp_builtin = xyes; then
  25919.   access_output_udp_builtin_TRUE=
  25920.   access_output_udp_builtin_FALSE='#'
  25921. else
  25922.   access_output_udp_builtin_TRUE='#'
  25923.   access_output_udp_builtin_FALSE=
  25924. fi
  25925.  
  25926.  
  25927.  
  25928. if test x$access_output_http_plugin = xyes; then
  25929.   access_output_http_plugin_TRUE=
  25930.   access_output_http_plugin_FALSE='#'
  25931. else
  25932.   access_output_http_plugin_TRUE='#'
  25933.   access_output_http_plugin_FALSE=
  25934. fi
  25935.  
  25936.  
  25937.  
  25938. if test x$access_output_http_builtin = xyes; then
  25939.   access_output_http_builtin_TRUE=
  25940.   access_output_http_builtin_FALSE='#'
  25941. else
  25942.   access_output_http_builtin_TRUE='#'
  25943.   access_output_http_builtin_FALSE=
  25944. fi
  25945.  
  25946.  
  25947.  
  25948. if test x$trivial_channel_mixer_plugin = xyes; then
  25949.   trivial_channel_mixer_plugin_TRUE=
  25950.   trivial_channel_mixer_plugin_FALSE='#'
  25951. else
  25952.   trivial_channel_mixer_plugin_TRUE='#'
  25953.   trivial_channel_mixer_plugin_FALSE=
  25954. fi
  25955.  
  25956.  
  25957.  
  25958. if test x$trivial_channel_mixer_builtin = xyes; then
  25959.   trivial_channel_mixer_builtin_TRUE=
  25960.   trivial_channel_mixer_builtin_FALSE='#'
  25961. else
  25962.   trivial_channel_mixer_builtin_TRUE='#'
  25963.   trivial_channel_mixer_builtin_FALSE=
  25964. fi
  25965.  
  25966.  
  25967.  
  25968.  
  25969. if test x$headphone_channel_mixer_plugin = xyes; then
  25970.   headphone_channel_mixer_plugin_TRUE=
  25971.   headphone_channel_mixer_plugin_FALSE='#'
  25972. else
  25973.   headphone_channel_mixer_plugin_TRUE='#'
  25974.   headphone_channel_mixer_plugin_FALSE=
  25975. fi
  25976.  
  25977.  
  25978.  
  25979. if test x$headphone_channel_mixer_builtin = xyes; then
  25980.   headphone_channel_mixer_builtin_TRUE=
  25981.   headphone_channel_mixer_builtin_FALSE='#'
  25982. else
  25983.   headphone_channel_mixer_builtin_TRUE='#'
  25984.   headphone_channel_mixer_builtin_FALSE=
  25985. fi
  25986.  
  25987.  
  25988.  
  25989. if test x$float32tos16_plugin = xyes; then
  25990.   float32tos16_plugin_TRUE=
  25991.   float32tos16_plugin_FALSE='#'
  25992. else
  25993.   float32tos16_plugin_TRUE='#'
  25994.   float32tos16_plugin_FALSE=
  25995. fi
  25996.  
  25997.  
  25998.  
  25999. if test x$float32tos16_builtin = xyes; then
  26000.   float32tos16_builtin_TRUE=
  26001.   float32tos16_builtin_FALSE='#'
  26002. else
  26003.   float32tos16_builtin_TRUE='#'
  26004.   float32tos16_builtin_FALSE=
  26005. fi
  26006.  
  26007.  
  26008.  
  26009. if test x$float32tos8_plugin = xyes; then
  26010.   float32tos8_plugin_TRUE=
  26011.   float32tos8_plugin_FALSE='#'
  26012. else
  26013.   float32tos8_plugin_TRUE='#'
  26014.   float32tos8_plugin_FALSE=
  26015. fi
  26016.  
  26017.  
  26018.  
  26019. if test x$float32tos8_builtin = xyes; then
  26020.   float32tos8_builtin_TRUE=
  26021.   float32tos8_builtin_FALSE='#'
  26022. else
  26023.   float32tos8_builtin_TRUE='#'
  26024.   float32tos8_builtin_FALSE=
  26025. fi
  26026.  
  26027.  
  26028.  
  26029. if test x$float32tou16_plugin = xyes; then
  26030.   float32tou16_plugin_TRUE=
  26031.   float32tou16_plugin_FALSE='#'
  26032. else
  26033.   float32tou16_plugin_TRUE='#'
  26034.   float32tou16_plugin_FALSE=
  26035. fi
  26036.  
  26037.  
  26038.  
  26039. if test x$float32tou16_builtin = xyes; then
  26040.   float32tou16_builtin_TRUE=
  26041.   float32tou16_builtin_FALSE='#'
  26042. else
  26043.   float32tou16_builtin_TRUE='#'
  26044.   float32tou16_builtin_FALSE=
  26045. fi
  26046.  
  26047.  
  26048.  
  26049. if test x$float32tou8_plugin = xyes; then
  26050.   float32tou8_plugin_TRUE=
  26051.   float32tou8_plugin_FALSE='#'
  26052. else
  26053.   float32tou8_plugin_TRUE='#'
  26054.   float32tou8_plugin_FALSE=
  26055. fi
  26056.  
  26057.  
  26058.  
  26059. if test x$float32tou8_builtin = xyes; then
  26060.   float32tou8_builtin_TRUE=
  26061.   float32tou8_builtin_FALSE='#'
  26062. else
  26063.   float32tou8_builtin_TRUE='#'
  26064.   float32tou8_builtin_FALSE=
  26065. fi
  26066.  
  26067.  
  26068.  
  26069. if test x$a52tospdif_plugin = xyes; then
  26070.   a52tospdif_plugin_TRUE=
  26071.   a52tospdif_plugin_FALSE='#'
  26072. else
  26073.   a52tospdif_plugin_TRUE='#'
  26074.   a52tospdif_plugin_FALSE=
  26075. fi
  26076.  
  26077.  
  26078.  
  26079. if test x$a52tospdif_builtin = xyes; then
  26080.   a52tospdif_builtin_TRUE=
  26081.   a52tospdif_builtin_FALSE='#'
  26082. else
  26083.   a52tospdif_builtin_TRUE='#'
  26084.   a52tospdif_builtin_FALSE=
  26085. fi
  26086.  
  26087.  
  26088.  
  26089.  
  26090.  
  26091. if test x$a52tofloat32_plugin = xyes; then
  26092.   a52tofloat32_plugin_TRUE=
  26093.   a52tofloat32_plugin_FALSE='#'
  26094. else
  26095.   a52tofloat32_plugin_TRUE='#'
  26096.   a52tofloat32_plugin_FALSE=
  26097. fi
  26098.  
  26099.  
  26100.  
  26101. if test x$a52tofloat32_builtin = xyes; then
  26102.   a52tofloat32_builtin_TRUE=
  26103.   a52tofloat32_builtin_FALSE='#'
  26104. else
  26105.   a52tofloat32_builtin_TRUE='#'
  26106.   a52tofloat32_builtin_FALSE=
  26107. fi
  26108.  
  26109.  
  26110.  
  26111. if test x$dtstospdif_plugin = xyes; then
  26112.   dtstospdif_plugin_TRUE=
  26113.   dtstospdif_plugin_FALSE='#'
  26114. else
  26115.   dtstospdif_plugin_TRUE='#'
  26116.   dtstospdif_plugin_FALSE=
  26117. fi
  26118.  
  26119.  
  26120.  
  26121. if test x$dtstospdif_builtin = xyes; then
  26122.   dtstospdif_builtin_TRUE=
  26123.   dtstospdif_builtin_FALSE='#'
  26124. else
  26125.   dtstospdif_builtin_TRUE='#'
  26126.   dtstospdif_builtin_FALSE=
  26127. fi
  26128.  
  26129.  
  26130.  
  26131. if test x$fixed32tos16_plugin = xyes; then
  26132.   fixed32tos16_plugin_TRUE=
  26133.   fixed32tos16_plugin_FALSE='#'
  26134. else
  26135.   fixed32tos16_plugin_TRUE='#'
  26136.   fixed32tos16_plugin_FALSE=
  26137. fi
  26138.  
  26139.  
  26140.  
  26141. if test x$fixed32tos16_builtin = xyes; then
  26142.   fixed32tos16_builtin_TRUE=
  26143.   fixed32tos16_builtin_FALSE='#'
  26144. else
  26145.   fixed32tos16_builtin_TRUE='#'
  26146.   fixed32tos16_builtin_FALSE=
  26147. fi
  26148.  
  26149.  
  26150.  
  26151. if test x$s16tofixed32_plugin = xyes; then
  26152.   s16tofixed32_plugin_TRUE=
  26153.   s16tofixed32_plugin_FALSE='#'
  26154. else
  26155.   s16tofixed32_plugin_TRUE='#'
  26156.   s16tofixed32_plugin_FALSE=
  26157. fi
  26158.  
  26159.  
  26160.  
  26161. if test x$s16tofixed32_builtin = xyes; then
  26162.   s16tofixed32_builtin_TRUE=
  26163.   s16tofixed32_builtin_FALSE='#'
  26164. else
  26165.   s16tofixed32_builtin_TRUE='#'
  26166.   s16tofixed32_builtin_FALSE=
  26167. fi
  26168.  
  26169.  
  26170.  
  26171. if test x$fixed32tofloat32_plugin = xyes; then
  26172.   fixed32tofloat32_plugin_TRUE=
  26173.   fixed32tofloat32_plugin_FALSE='#'
  26174. else
  26175.   fixed32tofloat32_plugin_TRUE='#'
  26176.   fixed32tofloat32_plugin_FALSE=
  26177. fi
  26178.  
  26179.  
  26180.  
  26181. if test x$fixed32tofloat32_builtin = xyes; then
  26182.   fixed32tofloat32_builtin_TRUE=
  26183.   fixed32tofloat32_builtin_FALSE='#'
  26184. else
  26185.   fixed32tofloat32_builtin_TRUE='#'
  26186.   fixed32tofloat32_builtin_FALSE=
  26187. fi
  26188.  
  26189.  
  26190.  
  26191. if test x$s16tofloat32_plugin = xyes; then
  26192.   s16tofloat32_plugin_TRUE=
  26193.   s16tofloat32_plugin_FALSE='#'
  26194. else
  26195.   s16tofloat32_plugin_TRUE='#'
  26196.   s16tofloat32_plugin_FALSE=
  26197. fi
  26198.  
  26199.  
  26200.  
  26201. if test x$s16tofloat32_builtin = xyes; then
  26202.   s16tofloat32_builtin_TRUE=
  26203.   s16tofloat32_builtin_FALSE='#'
  26204. else
  26205.   s16tofloat32_builtin_TRUE='#'
  26206.   s16tofloat32_builtin_FALSE=
  26207. fi
  26208.  
  26209.  
  26210.  
  26211. if test x$s16tofloat32swab_plugin = xyes; then
  26212.   s16tofloat32swab_plugin_TRUE=
  26213.   s16tofloat32swab_plugin_FALSE='#'
  26214. else
  26215.   s16tofloat32swab_plugin_TRUE='#'
  26216.   s16tofloat32swab_plugin_FALSE=
  26217. fi
  26218.  
  26219.  
  26220.  
  26221. if test x$s16tofloat32swab_builtin = xyes; then
  26222.   s16tofloat32swab_builtin_TRUE=
  26223.   s16tofloat32swab_builtin_FALSE='#'
  26224. else
  26225.   s16tofloat32swab_builtin_TRUE='#'
  26226.   s16tofloat32swab_builtin_FALSE=
  26227. fi
  26228.  
  26229.  
  26230.  
  26231. if test x$s8tofloat32_plugin = xyes; then
  26232.   s8tofloat32_plugin_TRUE=
  26233.   s8tofloat32_plugin_FALSE='#'
  26234. else
  26235.   s8tofloat32_plugin_TRUE='#'
  26236.   s8tofloat32_plugin_FALSE=
  26237. fi
  26238.  
  26239.  
  26240.  
  26241. if test x$s8tofloat32_builtin = xyes; then
  26242.   s8tofloat32_builtin_TRUE=
  26243.   s8tofloat32_builtin_FALSE='#'
  26244. else
  26245.   s8tofloat32_builtin_TRUE='#'
  26246.   s8tofloat32_builtin_FALSE=
  26247. fi
  26248.  
  26249.  
  26250.  
  26251. if test x$u8tofixed32_plugin = xyes; then
  26252.   u8tofixed32_plugin_TRUE=
  26253.   u8tofixed32_plugin_FALSE='#'
  26254. else
  26255.   u8tofixed32_plugin_TRUE='#'
  26256.   u8tofixed32_plugin_FALSE=
  26257. fi
  26258.  
  26259.  
  26260.  
  26261. if test x$u8tofixed32_builtin = xyes; then
  26262.   u8tofixed32_builtin_TRUE=
  26263.   u8tofixed32_builtin_FALSE='#'
  26264. else
  26265.   u8tofixed32_builtin_TRUE='#'
  26266.   u8tofixed32_builtin_FALSE=
  26267. fi
  26268.  
  26269.  
  26270.  
  26271. if test x$u8tofloat32_plugin = xyes; then
  26272.   u8tofloat32_plugin_TRUE=
  26273.   u8tofloat32_plugin_FALSE='#'
  26274. else
  26275.   u8tofloat32_plugin_TRUE='#'
  26276.   u8tofloat32_plugin_FALSE=
  26277. fi
  26278.  
  26279.  
  26280.  
  26281. if test x$u8tofloat32_builtin = xyes; then
  26282.   u8tofloat32_builtin_TRUE=
  26283.   u8tofloat32_builtin_FALSE='#'
  26284. else
  26285.   u8tofloat32_builtin_TRUE='#'
  26286.   u8tofloat32_builtin_FALSE=
  26287. fi
  26288.  
  26289.  
  26290.  
  26291.  
  26292.  
  26293. if test x$mpgatofixed32_plugin = xyes; then
  26294.   mpgatofixed32_plugin_TRUE=
  26295.   mpgatofixed32_plugin_FALSE='#'
  26296. else
  26297.   mpgatofixed32_plugin_TRUE='#'
  26298.   mpgatofixed32_plugin_FALSE=
  26299. fi
  26300.  
  26301.  
  26302.  
  26303. if test x$mpgatofixed32_builtin = xyes; then
  26304.   mpgatofixed32_builtin_TRUE=
  26305.   mpgatofixed32_builtin_FALSE='#'
  26306. else
  26307.   mpgatofixed32_builtin_TRUE='#'
  26308.   mpgatofixed32_builtin_FALSE=
  26309. fi
  26310.  
  26311.  
  26312.  
  26313. if test x$trivial_resampler_plugin = xyes; then
  26314.   trivial_resampler_plugin_TRUE=
  26315.   trivial_resampler_plugin_FALSE='#'
  26316. else
  26317.   trivial_resampler_plugin_TRUE='#'
  26318.   trivial_resampler_plugin_FALSE=
  26319. fi
  26320.  
  26321.  
  26322.  
  26323. if test x$trivial_resampler_builtin = xyes; then
  26324.   trivial_resampler_builtin_TRUE=
  26325.   trivial_resampler_builtin_FALSE='#'
  26326. else
  26327.   trivial_resampler_builtin_TRUE='#'
  26328.   trivial_resampler_builtin_FALSE=
  26329. fi
  26330.  
  26331.  
  26332.  
  26333. if test x$ugly_resampler_plugin = xyes; then
  26334.   ugly_resampler_plugin_TRUE=
  26335.   ugly_resampler_plugin_FALSE='#'
  26336. else
  26337.   ugly_resampler_plugin_TRUE='#'
  26338.   ugly_resampler_plugin_FALSE=
  26339. fi
  26340.  
  26341.  
  26342.  
  26343. if test x$ugly_resampler_builtin = xyes; then
  26344.   ugly_resampler_builtin_TRUE=
  26345.   ugly_resampler_builtin_FALSE='#'
  26346. else
  26347.   ugly_resampler_builtin_TRUE='#'
  26348.   ugly_resampler_builtin_FALSE=
  26349. fi
  26350.  
  26351.  
  26352.  
  26353. if test x$linear_resampler_plugin = xyes; then
  26354.   linear_resampler_plugin_TRUE=
  26355.   linear_resampler_plugin_FALSE='#'
  26356. else
  26357.   linear_resampler_plugin_TRUE='#'
  26358.   linear_resampler_plugin_FALSE=
  26359. fi
  26360.  
  26361.  
  26362.  
  26363. if test x$linear_resampler_builtin = xyes; then
  26364.   linear_resampler_builtin_TRUE=
  26365.   linear_resampler_builtin_FALSE='#'
  26366. else
  26367.   linear_resampler_builtin_TRUE='#'
  26368.   linear_resampler_builtin_FALSE=
  26369. fi
  26370.  
  26371.  
  26372.  
  26373. if test x$bandlimited_resampler_plugin = xyes; then
  26374.   bandlimited_resampler_plugin_TRUE=
  26375.   bandlimited_resampler_plugin_FALSE='#'
  26376. else
  26377.   bandlimited_resampler_plugin_TRUE='#'
  26378.   bandlimited_resampler_plugin_FALSE=
  26379. fi
  26380.  
  26381.  
  26382.  
  26383. if test x$bandlimited_resampler_builtin = xyes; then
  26384.   bandlimited_resampler_builtin_TRUE=
  26385.   bandlimited_resampler_builtin_FALSE='#'
  26386. else
  26387.   bandlimited_resampler_builtin_TRUE='#'
  26388.   bandlimited_resampler_builtin_FALSE=
  26389. fi
  26390.  
  26391.  
  26392.  
  26393.  
  26394. if test x$coreaudio_resampler_plugin = xyes; then
  26395.   coreaudio_resampler_plugin_TRUE=
  26396.   coreaudio_resampler_plugin_FALSE='#'
  26397. else
  26398.   coreaudio_resampler_plugin_TRUE='#'
  26399.   coreaudio_resampler_plugin_FALSE=
  26400. fi
  26401.  
  26402.  
  26403.  
  26404. if test x$coreaudio_resampler_builtin = xyes; then
  26405.   coreaudio_resampler_builtin_TRUE=
  26406.   coreaudio_resampler_builtin_FALSE='#'
  26407. else
  26408.   coreaudio_resampler_builtin_TRUE='#'
  26409.   coreaudio_resampler_builtin_FALSE=
  26410. fi
  26411.  
  26412.  
  26413.  
  26414. if test x$trivial_mixer_plugin = xyes; then
  26415.   trivial_mixer_plugin_TRUE=
  26416.   trivial_mixer_plugin_FALSE='#'
  26417. else
  26418.   trivial_mixer_plugin_TRUE='#'
  26419.   trivial_mixer_plugin_FALSE=
  26420. fi
  26421.  
  26422.  
  26423.  
  26424. if test x$trivial_mixer_builtin = xyes; then
  26425.   trivial_mixer_builtin_TRUE=
  26426.   trivial_mixer_builtin_FALSE='#'
  26427. else
  26428.   trivial_mixer_builtin_TRUE='#'
  26429.   trivial_mixer_builtin_FALSE=
  26430. fi
  26431.  
  26432.  
  26433.  
  26434. if test x$float32_mixer_plugin = xyes; then
  26435.   float32_mixer_plugin_TRUE=
  26436.   float32_mixer_plugin_FALSE='#'
  26437. else
  26438.   float32_mixer_plugin_TRUE='#'
  26439.   float32_mixer_plugin_FALSE=
  26440. fi
  26441.  
  26442.  
  26443.  
  26444. if test x$float32_mixer_builtin = xyes; then
  26445.   float32_mixer_builtin_TRUE=
  26446.   float32_mixer_builtin_FALSE='#'
  26447. else
  26448.   float32_mixer_builtin_TRUE='#'
  26449.   float32_mixer_builtin_FALSE=
  26450. fi
  26451.  
  26452.  
  26453.  
  26454. if test x$spdif_mixer_plugin = xyes; then
  26455.   spdif_mixer_plugin_TRUE=
  26456.   spdif_mixer_plugin_FALSE='#'
  26457. else
  26458.   spdif_mixer_plugin_TRUE='#'
  26459.   spdif_mixer_plugin_FALSE=
  26460. fi
  26461.  
  26462.  
  26463.  
  26464. if test x$spdif_mixer_builtin = xyes; then
  26465.   spdif_mixer_builtin_TRUE=
  26466.   spdif_mixer_builtin_FALSE='#'
  26467. else
  26468.   spdif_mixer_builtin_TRUE='#'
  26469.   spdif_mixer_builtin_FALSE=
  26470. fi
  26471.  
  26472.  
  26473.  
  26474.  
  26475. if test x$alsa_plugin = xyes; then
  26476.   alsa_plugin_TRUE=
  26477.   alsa_plugin_FALSE='#'
  26478. else
  26479.   alsa_plugin_TRUE='#'
  26480.   alsa_plugin_FALSE=
  26481. fi
  26482.  
  26483.  
  26484.  
  26485. if test x$alsa_builtin = xyes; then
  26486.   alsa_builtin_TRUE=
  26487.   alsa_builtin_FALSE='#'
  26488. else
  26489.   alsa_builtin_TRUE='#'
  26490.   alsa_builtin_FALSE=
  26491. fi
  26492.  
  26493.  
  26494.  
  26495.  
  26496.  
  26497. if test x$arts_plugin = xyes; then
  26498.   arts_plugin_TRUE=
  26499.   arts_plugin_FALSE='#'
  26500. else
  26501.   arts_plugin_TRUE='#'
  26502.   arts_plugin_FALSE=
  26503. fi
  26504.  
  26505.  
  26506.  
  26507. if test x$arts_builtin = xyes; then
  26508.   arts_builtin_TRUE=
  26509.   arts_builtin_FALSE='#'
  26510. else
  26511.   arts_builtin_TRUE='#'
  26512.   arts_builtin_FALSE=
  26513. fi
  26514.  
  26515.  
  26516.  
  26517.  
  26518. if test x$coreaudio_plugin = xyes; then
  26519.   coreaudio_plugin_TRUE=
  26520.   coreaudio_plugin_FALSE='#'
  26521. else
  26522.   coreaudio_plugin_TRUE='#'
  26523.   coreaudio_plugin_FALSE=
  26524. fi
  26525.  
  26526.  
  26527.  
  26528. if test x$coreaudio_builtin = xyes; then
  26529.   coreaudio_builtin_TRUE=
  26530.   coreaudio_builtin_FALSE='#'
  26531. else
  26532.   coreaudio_builtin_TRUE='#'
  26533.   coreaudio_builtin_FALSE=
  26534. fi
  26535.  
  26536.  
  26537.  
  26538.  
  26539. if test x$aout_directx_plugin = xyes; then
  26540.   aout_directx_plugin_TRUE=
  26541.   aout_directx_plugin_FALSE='#'
  26542. else
  26543.   aout_directx_plugin_TRUE='#'
  26544.   aout_directx_plugin_FALSE=
  26545. fi
  26546.  
  26547.  
  26548.  
  26549. if test x$aout_directx_builtin = xyes; then
  26550.   aout_directx_builtin_TRUE=
  26551.   aout_directx_builtin_FALSE='#'
  26552. else
  26553.   aout_directx_builtin_TRUE='#'
  26554.   aout_directx_builtin_FALSE=
  26555. fi
  26556.  
  26557.  
  26558.  
  26559.  
  26560.  
  26561. if test x$esd_plugin = xyes; then
  26562.   esd_plugin_TRUE=
  26563.   esd_plugin_FALSE='#'
  26564. else
  26565.   esd_plugin_TRUE='#'
  26566.   esd_plugin_FALSE=
  26567. fi
  26568.  
  26569.  
  26570.  
  26571. if test x$esd_builtin = xyes; then
  26572.   esd_builtin_TRUE=
  26573.   esd_builtin_FALSE='#'
  26574. else
  26575.   esd_builtin_TRUE='#'
  26576.   esd_builtin_FALSE=
  26577. fi
  26578.  
  26579.  
  26580.  
  26581. if test x$aout_file_plugin = xyes; then
  26582.   aout_file_plugin_TRUE=
  26583.   aout_file_plugin_FALSE='#'
  26584. else
  26585.   aout_file_plugin_TRUE='#'
  26586.   aout_file_plugin_FALSE=
  26587. fi
  26588.  
  26589.  
  26590.  
  26591. if test x$aout_file_builtin = xyes; then
  26592.   aout_file_builtin_TRUE=
  26593.   aout_file_builtin_FALSE='#'
  26594. else
  26595.   aout_file_builtin_TRUE='#'
  26596.   aout_file_builtin_FALSE=
  26597. fi
  26598.  
  26599.  
  26600.  
  26601. if test x$oss_plugin = xyes; then
  26602.   oss_plugin_TRUE=
  26603.   oss_plugin_FALSE='#'
  26604. else
  26605.   oss_plugin_TRUE='#'
  26606.   oss_plugin_FALSE=
  26607. fi
  26608.  
  26609.  
  26610.  
  26611. if test x$oss_builtin = xyes; then
  26612.   oss_builtin_TRUE=
  26613.   oss_builtin_FALSE='#'
  26614. else
  26615.   oss_builtin_TRUE='#'
  26616.   oss_builtin_FALSE=
  26617. fi
  26618.  
  26619.  
  26620.  
  26621.  
  26622.  
  26623. if test x$aout_sdl_plugin = xyes; then
  26624.   aout_sdl_plugin_TRUE=
  26625.   aout_sdl_plugin_FALSE='#'
  26626. else
  26627.   aout_sdl_plugin_TRUE='#'
  26628.   aout_sdl_plugin_FALSE=
  26629. fi
  26630.  
  26631.  
  26632.  
  26633. if test x$aout_sdl_builtin = xyes; then
  26634.   aout_sdl_builtin_TRUE=
  26635.   aout_sdl_builtin_FALSE='#'
  26636. else
  26637.   aout_sdl_builtin_TRUE='#'
  26638.   aout_sdl_builtin_FALSE=
  26639. fi
  26640.  
  26641.  
  26642.  
  26643.  
  26644. if test x$waveout_plugin = xyes; then
  26645.   waveout_plugin_TRUE=
  26646.   waveout_plugin_FALSE='#'
  26647. else
  26648.   waveout_plugin_TRUE='#'
  26649.   waveout_plugin_FALSE=
  26650. fi
  26651.  
  26652.  
  26653.  
  26654. if test x$waveout_builtin = xyes; then
  26655.   waveout_builtin_TRUE=
  26656.   waveout_builtin_FALSE='#'
  26657. else
  26658.   waveout_builtin_TRUE='#'
  26659.   waveout_builtin_FALSE=
  26660. fi
  26661.  
  26662.  
  26663.  
  26664. if test x$a52_plugin = xyes; then
  26665.   a52_plugin_TRUE=
  26666.   a52_plugin_FALSE='#'
  26667. else
  26668.   a52_plugin_TRUE='#'
  26669.   a52_plugin_FALSE=
  26670. fi
  26671.  
  26672.  
  26673.  
  26674. if test x$a52_builtin = xyes; then
  26675.   a52_builtin_TRUE=
  26676.   a52_builtin_FALSE='#'
  26677. else
  26678.   a52_builtin_TRUE='#'
  26679.   a52_builtin_FALSE=
  26680. fi
  26681.  
  26682.  
  26683.  
  26684. if test x$dts_plugin = xyes; then
  26685.   dts_plugin_TRUE=
  26686.   dts_plugin_FALSE='#'
  26687. else
  26688.   dts_plugin_TRUE='#'
  26689.   dts_plugin_FALSE=
  26690. fi
  26691.  
  26692.  
  26693.  
  26694. if test x$dts_builtin = xyes; then
  26695.   dts_builtin_TRUE=
  26696.   dts_builtin_FALSE='#'
  26697. else
  26698.   dts_builtin_TRUE='#'
  26699.   dts_builtin_FALSE=
  26700. fi
  26701.  
  26702.  
  26703.  
  26704.  
  26705. if test x$flacdec_plugin = xyes; then
  26706.   flacdec_plugin_TRUE=
  26707.   flacdec_plugin_FALSE='#'
  26708. else
  26709.   flacdec_plugin_TRUE='#'
  26710.   flacdec_plugin_FALSE=
  26711. fi
  26712.  
  26713.  
  26714.  
  26715. if test x$flacdec_builtin = xyes; then
  26716.   flacdec_builtin_TRUE=
  26717.   flacdec_builtin_FALSE='#'
  26718. else
  26719.   flacdec_builtin_TRUE='#'
  26720.   flacdec_builtin_FALSE=
  26721. fi
  26722.  
  26723.  
  26724.  
  26725. if test x$lpcm_plugin = xyes; then
  26726.   lpcm_plugin_TRUE=
  26727.   lpcm_plugin_FALSE='#'
  26728. else
  26729.   lpcm_plugin_TRUE='#'
  26730.   lpcm_plugin_FALSE=
  26731. fi
  26732.  
  26733.  
  26734.  
  26735. if test x$lpcm_builtin = xyes; then
  26736.   lpcm_builtin_TRUE=
  26737.   lpcm_builtin_FALSE='#'
  26738. else
  26739.   lpcm_builtin_TRUE='#'
  26740.   lpcm_builtin_FALSE=
  26741. fi
  26742.  
  26743.  
  26744.  
  26745. if test x$araw_plugin = xyes; then
  26746.   araw_plugin_TRUE=
  26747.   araw_plugin_FALSE='#'
  26748. else
  26749.   araw_plugin_TRUE='#'
  26750.   araw_plugin_FALSE=
  26751. fi
  26752.  
  26753.  
  26754.  
  26755. if test x$araw_builtin = xyes; then
  26756.   araw_builtin_TRUE=
  26757.   araw_builtin_FALSE='#'
  26758. else
  26759.   araw_builtin_TRUE='#'
  26760.   araw_builtin_FALSE=
  26761. fi
  26762.  
  26763.  
  26764.  
  26765.  
  26766. if test x$vorbis_plugin = xyes; then
  26767.   vorbis_plugin_TRUE=
  26768.   vorbis_plugin_FALSE='#'
  26769. else
  26770.   vorbis_plugin_TRUE='#'
  26771.   vorbis_plugin_FALSE=
  26772. fi
  26773.  
  26774.  
  26775.  
  26776. if test x$vorbis_builtin = xyes; then
  26777.   vorbis_builtin_TRUE=
  26778.   vorbis_builtin_FALSE='#'
  26779. else
  26780.   vorbis_builtin_TRUE='#'
  26781.   vorbis_builtin_FALSE=
  26782. fi
  26783.  
  26784.  
  26785.  
  26786.  
  26787.  
  26788. if test x$tarkin_plugin = xyes; then
  26789.   tarkin_plugin_TRUE=
  26790.   tarkin_plugin_FALSE='#'
  26791. else
  26792.   tarkin_plugin_TRUE='#'
  26793.   tarkin_plugin_FALSE=
  26794. fi
  26795.  
  26796.  
  26797.  
  26798. if test x$tarkin_builtin = xyes; then
  26799.   tarkin_builtin_TRUE=
  26800.   tarkin_builtin_FALSE='#'
  26801. else
  26802.   tarkin_builtin_TRUE='#'
  26803.   tarkin_builtin_FALSE=
  26804. fi
  26805.  
  26806.  
  26807.  
  26808.  
  26809. if test x$theora_plugin = xyes; then
  26810.   theora_plugin_TRUE=
  26811.   theora_plugin_FALSE='#'
  26812. else
  26813.   theora_plugin_TRUE='#'
  26814.   theora_plugin_FALSE=
  26815. fi
  26816.  
  26817.  
  26818.  
  26819. if test x$theora_builtin = xyes; then
  26820.   theora_builtin_TRUE=
  26821.   theora_builtin_FALSE='#'
  26822. else
  26823.   theora_builtin_TRUE='#'
  26824.   theora_builtin_FALSE=
  26825. fi
  26826.  
  26827.  
  26828.  
  26829.  
  26830. if test x$tremor_plugin = xyes; then
  26831.   tremor_plugin_TRUE=
  26832.   tremor_plugin_FALSE='#'
  26833. else
  26834.   tremor_plugin_TRUE='#'
  26835.   tremor_plugin_FALSE=
  26836. fi
  26837.  
  26838.  
  26839.  
  26840. if test x$tremor_builtin = xyes; then
  26841.   tremor_builtin_TRUE=
  26842.   tremor_builtin_FALSE='#'
  26843. else
  26844.   tremor_builtin_TRUE='#'
  26845.   tremor_builtin_FALSE=
  26846. fi
  26847.  
  26848.  
  26849.  
  26850.  
  26851. if test x$dv_plugin = xyes; then
  26852.   dv_plugin_TRUE=
  26853.   dv_plugin_FALSE='#'
  26854. else
  26855.   dv_plugin_TRUE='#'
  26856.   dv_plugin_FALSE=
  26857. fi
  26858.  
  26859.  
  26860.  
  26861. if test x$dv_builtin = xyes; then
  26862.   dv_builtin_TRUE=
  26863.   dv_builtin_FALSE='#'
  26864. else
  26865.   dv_builtin_TRUE='#'
  26866.   dv_builtin_FALSE=
  26867. fi
  26868.  
  26869.  
  26870.  
  26871.  
  26872.  
  26873. if test x$xvid_plugin = xyes; then
  26874.   xvid_plugin_TRUE=
  26875.   xvid_plugin_FALSE='#'
  26876. else
  26877.   xvid_plugin_TRUE='#'
  26878.   xvid_plugin_FALSE=
  26879. fi
  26880.  
  26881.  
  26882.  
  26883. if test x$xvid_builtin = xyes; then
  26884.   xvid_builtin_TRUE=
  26885.   xvid_builtin_FALSE='#'
  26886. else
  26887.   xvid_builtin_TRUE='#'
  26888.   xvid_builtin_FALSE=
  26889. fi
  26890.  
  26891.  
  26892.  
  26893. if test x$adpcm_plugin = xyes; then
  26894.   adpcm_plugin_TRUE=
  26895.   adpcm_plugin_FALSE='#'
  26896. else
  26897.   adpcm_plugin_TRUE='#'
  26898.   adpcm_plugin_FALSE=
  26899. fi
  26900.  
  26901.  
  26902.  
  26903. if test x$adpcm_builtin = xyes; then
  26904.   adpcm_builtin_TRUE=
  26905.   adpcm_builtin_FALSE='#'
  26906. else
  26907.   adpcm_builtin_TRUE='#'
  26908.   adpcm_builtin_FALSE=
  26909. fi
  26910.  
  26911.  
  26912.  
  26913. if test x$mpeg_audio_plugin = xyes; then
  26914.   mpeg_audio_plugin_TRUE=
  26915.   mpeg_audio_plugin_FALSE='#'
  26916. else
  26917.   mpeg_audio_plugin_TRUE='#'
  26918.   mpeg_audio_plugin_FALSE=
  26919. fi
  26920.  
  26921.  
  26922.  
  26923. if test x$mpeg_audio_builtin = xyes; then
  26924.   mpeg_audio_builtin_TRUE=
  26925.   mpeg_audio_builtin_FALSE='#'
  26926. else
  26927.   mpeg_audio_builtin_TRUE='#'
  26928.   mpeg_audio_builtin_FALSE=
  26929. fi
  26930.  
  26931.  
  26932.  
  26933.  
  26934. if test x$libmpeg2_plugin = xyes; then
  26935.   libmpeg2_plugin_TRUE=
  26936.   libmpeg2_plugin_FALSE='#'
  26937. else
  26938.   libmpeg2_plugin_TRUE='#'
  26939.   libmpeg2_plugin_FALSE=
  26940. fi
  26941.  
  26942.  
  26943.  
  26944. if test x$libmpeg2_builtin = xyes; then
  26945.   libmpeg2_builtin_TRUE=
  26946.   libmpeg2_builtin_FALSE='#'
  26947. else
  26948.   libmpeg2_builtin_TRUE='#'
  26949.   libmpeg2_builtin_FALSE=
  26950. fi
  26951.  
  26952.  
  26953.  
  26954. if test x$rawvideo_plugin = xyes; then
  26955.   rawvideo_plugin_TRUE=
  26956.   rawvideo_plugin_FALSE='#'
  26957. else
  26958.   rawvideo_plugin_TRUE='#'
  26959.   rawvideo_plugin_FALSE=
  26960. fi
  26961.  
  26962.  
  26963.  
  26964. if test x$rawvideo_builtin = xyes; then
  26965.   rawvideo_builtin_TRUE=
  26966.   rawvideo_builtin_FALSE='#'
  26967. else
  26968.   rawvideo_builtin_TRUE='#'
  26969.   rawvideo_builtin_FALSE=
  26970. fi
  26971.  
  26972.  
  26973.  
  26974. if test x$a52old_plugin = xyes; then
  26975.   a52old_plugin_TRUE=
  26976.   a52old_plugin_FALSE='#'
  26977. else
  26978.   a52old_plugin_TRUE='#'
  26979.   a52old_plugin_FALSE=
  26980. fi
  26981.  
  26982.  
  26983.  
  26984. if test x$a52old_builtin = xyes; then
  26985.   a52old_builtin_TRUE=
  26986.   a52old_builtin_FALSE='#'
  26987. else
  26988.   a52old_builtin_TRUE='#'
  26989.   a52old_builtin_FALSE=
  26990. fi
  26991.  
  26992.  
  26993.  
  26994. if test x$downmix_plugin = xyes; then
  26995.   downmix_plugin_TRUE=
  26996.   downmix_plugin_FALSE='#'
  26997. else
  26998.   downmix_plugin_TRUE='#'
  26999.   downmix_plugin_FALSE=
  27000. fi
  27001.  
  27002.  
  27003.  
  27004. if test x$downmix_builtin = xyes; then
  27005.   downmix_builtin_TRUE=
  27006.   downmix_builtin_FALSE='#'
  27007. else
  27008.   downmix_builtin_TRUE='#'
  27009.   downmix_builtin_FALSE=
  27010. fi
  27011.  
  27012.  
  27013.  
  27014. if test x$downmixsse_plugin = xyes; then
  27015.   downmixsse_plugin_TRUE=
  27016.   downmixsse_plugin_FALSE='#'
  27017. else
  27018.   downmixsse_plugin_TRUE='#'
  27019.   downmixsse_plugin_FALSE=
  27020. fi
  27021.  
  27022.  
  27023.  
  27024. if test x$downmixsse_builtin = xyes; then
  27025.   downmixsse_builtin_TRUE=
  27026.   downmixsse_builtin_FALSE='#'
  27027. else
  27028.   downmixsse_builtin_TRUE='#'
  27029.   downmixsse_builtin_FALSE=
  27030. fi
  27031.  
  27032.  
  27033.  
  27034. if test x$downmix3dn_plugin = xyes; then
  27035.   downmix3dn_plugin_TRUE=
  27036.   downmix3dn_plugin_FALSE='#'
  27037. else
  27038.   downmix3dn_plugin_TRUE='#'
  27039.   downmix3dn_plugin_FALSE=
  27040. fi
  27041.  
  27042.  
  27043.  
  27044. if test x$downmix3dn_builtin = xyes; then
  27045.   downmix3dn_builtin_TRUE=
  27046.   downmix3dn_builtin_FALSE='#'
  27047. else
  27048.   downmix3dn_builtin_TRUE='#'
  27049.   downmix3dn_builtin_FALSE=
  27050. fi
  27051.  
  27052.  
  27053.  
  27054.  
  27055. if test x$imdct_plugin = xyes; then
  27056.   imdct_plugin_TRUE=
  27057.   imdct_plugin_FALSE='#'
  27058. else
  27059.   imdct_plugin_TRUE='#'
  27060.   imdct_plugin_FALSE=
  27061. fi
  27062.  
  27063.  
  27064.  
  27065. if test x$imdct_builtin = xyes; then
  27066.   imdct_builtin_TRUE=
  27067.   imdct_builtin_FALSE='#'
  27068. else
  27069.   imdct_builtin_TRUE='#'
  27070.   imdct_builtin_FALSE=
  27071. fi
  27072.  
  27073.  
  27074.  
  27075.  
  27076. if test x$imdctsse_plugin = xyes; then
  27077.   imdctsse_plugin_TRUE=
  27078.   imdctsse_plugin_FALSE='#'
  27079. else
  27080.   imdctsse_plugin_TRUE='#'
  27081.   imdctsse_plugin_FALSE=
  27082. fi
  27083.  
  27084.  
  27085.  
  27086. if test x$imdctsse_builtin = xyes; then
  27087.   imdctsse_builtin_TRUE=
  27088.   imdctsse_builtin_FALSE='#'
  27089. else
  27090.   imdctsse_builtin_TRUE='#'
  27091.   imdctsse_builtin_FALSE=
  27092. fi
  27093.  
  27094.  
  27095.  
  27096.  
  27097. if test x$imdct3dn_plugin = xyes; then
  27098.   imdct3dn_plugin_TRUE=
  27099.   imdct3dn_plugin_FALSE='#'
  27100. else
  27101.   imdct3dn_plugin_TRUE='#'
  27102.   imdct3dn_plugin_FALSE=
  27103. fi
  27104.  
  27105.  
  27106.  
  27107. if test x$imdct3dn_builtin = xyes; then
  27108.   imdct3dn_builtin_TRUE=
  27109.   imdct3dn_builtin_FALSE='#'
  27110. else
  27111.   imdct3dn_builtin_TRUE='#'
  27112.   imdct3dn_builtin_FALSE=
  27113. fi
  27114.  
  27115.  
  27116.  
  27117. if test x$cinepak_plugin = xyes; then
  27118.   cinepak_plugin_TRUE=
  27119.   cinepak_plugin_FALSE='#'
  27120. else
  27121.   cinepak_plugin_TRUE='#'
  27122.   cinepak_plugin_FALSE=
  27123. fi
  27124.  
  27125.  
  27126.  
  27127. if test x$cinepak_builtin = xyes; then
  27128.   cinepak_builtin_TRUE=
  27129.   cinepak_builtin_FALSE='#'
  27130. else
  27131.   cinepak_builtin_TRUE='#'
  27132.   cinepak_builtin_FALSE=
  27133. fi
  27134.  
  27135.  
  27136.  
  27137.  
  27138.  
  27139. if test x$faad_plugin = xyes; then
  27140.   faad_plugin_TRUE=
  27141.   faad_plugin_FALSE='#'
  27142. else
  27143.   faad_plugin_TRUE='#'
  27144.   faad_plugin_FALSE=
  27145. fi
  27146.  
  27147.  
  27148.  
  27149. if test x$faad_builtin = xyes; then
  27150.   faad_builtin_TRUE=
  27151.   faad_builtin_FALSE='#'
  27152. else
  27153.   faad_builtin_TRUE='#'
  27154.   faad_builtin_FALSE=
  27155. fi
  27156.  
  27157.  
  27158.  
  27159.  
  27160.  
  27161. if test x$ffmpeg_plugin = xyes; then
  27162.   ffmpeg_plugin_TRUE=
  27163.   ffmpeg_plugin_FALSE='#'
  27164. else
  27165.   ffmpeg_plugin_TRUE='#'
  27166.   ffmpeg_plugin_FALSE=
  27167. fi
  27168.  
  27169.  
  27170.  
  27171. if test x$ffmpeg_builtin = xyes; then
  27172.   ffmpeg_builtin_TRUE=
  27173.   ffmpeg_builtin_FALSE='#'
  27174. else
  27175.   ffmpeg_builtin_TRUE='#'
  27176.   ffmpeg_builtin_FALSE=
  27177. fi
  27178.  
  27179.  
  27180.  
  27181. if test x$postprocessing_c_plugin = xyes; then
  27182.   postprocessing_c_plugin_TRUE=
  27183.   postprocessing_c_plugin_FALSE='#'
  27184. else
  27185.   postprocessing_c_plugin_TRUE='#'
  27186.   postprocessing_c_plugin_FALSE=
  27187. fi
  27188.  
  27189.  
  27190.  
  27191. if test x$postprocessing_c_builtin = xyes; then
  27192.   postprocessing_c_builtin_TRUE=
  27193.   postprocessing_c_builtin_FALSE='#'
  27194. else
  27195.   postprocessing_c_builtin_TRUE='#'
  27196.   postprocessing_c_builtin_FALSE=
  27197. fi
  27198.  
  27199.  
  27200.  
  27201. if test x$postprocessing_mmx_plugin = xyes; then
  27202.   postprocessing_mmx_plugin_TRUE=
  27203.   postprocessing_mmx_plugin_FALSE='#'
  27204. else
  27205.   postprocessing_mmx_plugin_TRUE='#'
  27206.   postprocessing_mmx_plugin_FALSE=
  27207. fi
  27208.  
  27209.  
  27210.  
  27211. if test x$postprocessing_mmx_builtin = xyes; then
  27212.   postprocessing_mmx_builtin_TRUE=
  27213.   postprocessing_mmx_builtin_FALSE='#'
  27214. else
  27215.   postprocessing_mmx_builtin_TRUE='#'
  27216.   postprocessing_mmx_builtin_FALSE=
  27217. fi
  27218.  
  27219.  
  27220.  
  27221. if test x$postprocessing_mmxext_plugin = xyes; then
  27222.   postprocessing_mmxext_plugin_TRUE=
  27223.   postprocessing_mmxext_plugin_FALSE='#'
  27224. else
  27225.   postprocessing_mmxext_plugin_TRUE='#'
  27226.   postprocessing_mmxext_plugin_FALSE=
  27227. fi
  27228.  
  27229.  
  27230.  
  27231. if test x$postprocessing_mmxext_builtin = xyes; then
  27232.   postprocessing_mmxext_builtin_TRUE=
  27233.   postprocessing_mmxext_builtin_FALSE='#'
  27234. else
  27235.   postprocessing_mmxext_builtin_TRUE='#'
  27236.   postprocessing_mmxext_builtin_FALSE=
  27237. fi
  27238.  
  27239.  
  27240.  
  27241.  
  27242. if test x$mpeg_video_plugin = xyes; then
  27243.   mpeg_video_plugin_TRUE=
  27244.   mpeg_video_plugin_FALSE='#'
  27245. else
  27246.   mpeg_video_plugin_TRUE='#'
  27247.   mpeg_video_plugin_FALSE=
  27248. fi
  27249.  
  27250.  
  27251.  
  27252. if test x$mpeg_video_builtin = xyes; then
  27253.   mpeg_video_builtin_TRUE=
  27254.   mpeg_video_builtin_FALSE='#'
  27255. else
  27256.   mpeg_video_builtin_TRUE='#'
  27257.   mpeg_video_builtin_FALSE=
  27258. fi
  27259.  
  27260.  
  27261.  
  27262. if test x$idct_plugin = xyes; then
  27263.   idct_plugin_TRUE=
  27264.   idct_plugin_FALSE='#'
  27265. else
  27266.   idct_plugin_TRUE='#'
  27267.   idct_plugin_FALSE=
  27268. fi
  27269.  
  27270.  
  27271.  
  27272. if test x$idct_builtin = xyes; then
  27273.   idct_builtin_TRUE=
  27274.   idct_builtin_FALSE='#'
  27275. else
  27276.   idct_builtin_TRUE='#'
  27277.   idct_builtin_FALSE=
  27278. fi
  27279.  
  27280.  
  27281.  
  27282. if test x$idctclassic_plugin = xyes; then
  27283.   idctclassic_plugin_TRUE=
  27284.   idctclassic_plugin_FALSE='#'
  27285. else
  27286.   idctclassic_plugin_TRUE='#'
  27287.   idctclassic_plugin_FALSE=
  27288. fi
  27289.  
  27290.  
  27291.  
  27292. if test x$idctclassic_builtin = xyes; then
  27293.   idctclassic_builtin_TRUE=
  27294.   idctclassic_builtin_FALSE='#'
  27295. else
  27296.   idctclassic_builtin_TRUE='#'
  27297.   idctclassic_builtin_FALSE=
  27298. fi
  27299.  
  27300.  
  27301.  
  27302. if test x$idctmmx_plugin = xyes; then
  27303.   idctmmx_plugin_TRUE=
  27304.   idctmmx_plugin_FALSE='#'
  27305. else
  27306.   idctmmx_plugin_TRUE='#'
  27307.   idctmmx_plugin_FALSE=
  27308. fi
  27309.  
  27310.  
  27311.  
  27312. if test x$idctmmx_builtin = xyes; then
  27313.   idctmmx_builtin_TRUE=
  27314.   idctmmx_builtin_FALSE='#'
  27315. else
  27316.   idctmmx_builtin_TRUE='#'
  27317.   idctmmx_builtin_FALSE=
  27318. fi
  27319.  
  27320.  
  27321.  
  27322. if test x$idctmmxext_plugin = xyes; then
  27323.   idctmmxext_plugin_TRUE=
  27324.   idctmmxext_plugin_FALSE='#'
  27325. else
  27326.   idctmmxext_plugin_TRUE='#'
  27327.   idctmmxext_plugin_FALSE=
  27328. fi
  27329.  
  27330.  
  27331.  
  27332. if test x$idctmmxext_builtin = xyes; then
  27333.   idctmmxext_builtin_TRUE=
  27334.   idctmmxext_builtin_FALSE='#'
  27335. else
  27336.   idctmmxext_builtin_TRUE='#'
  27337.   idctmmxext_builtin_FALSE=
  27338. fi
  27339.  
  27340.  
  27341.  
  27342.  
  27343.  
  27344. if test x$idctaltivec_plugin = xyes; then
  27345.   idctaltivec_plugin_TRUE=
  27346.   idctaltivec_plugin_FALSE='#'
  27347. else
  27348.   idctaltivec_plugin_TRUE='#'
  27349.   idctaltivec_plugin_FALSE=
  27350. fi
  27351.  
  27352.  
  27353.  
  27354. if test x$idctaltivec_builtin = xyes; then
  27355.   idctaltivec_builtin_TRUE=
  27356.   idctaltivec_builtin_FALSE='#'
  27357. else
  27358.   idctaltivec_builtin_TRUE='#'
  27359.   idctaltivec_builtin_FALSE=
  27360. fi
  27361.  
  27362.  
  27363.  
  27364. if test x$motion_plugin = xyes; then
  27365.   motion_plugin_TRUE=
  27366.   motion_plugin_FALSE='#'
  27367. else
  27368.   motion_plugin_TRUE='#'
  27369.   motion_plugin_FALSE=
  27370. fi
  27371.  
  27372.  
  27373.  
  27374. if test x$motion_builtin = xyes; then
  27375.   motion_builtin_TRUE=
  27376.   motion_builtin_FALSE='#'
  27377. else
  27378.   motion_builtin_TRUE='#'
  27379.   motion_builtin_FALSE=
  27380. fi
  27381.  
  27382.  
  27383.  
  27384. if test x$motionmmx_plugin = xyes; then
  27385.   motionmmx_plugin_TRUE=
  27386.   motionmmx_plugin_FALSE='#'
  27387. else
  27388.   motionmmx_plugin_TRUE='#'
  27389.   motionmmx_plugin_FALSE=
  27390. fi
  27391.  
  27392.  
  27393.  
  27394. if test x$motionmmx_builtin = xyes; then
  27395.   motionmmx_builtin_TRUE=
  27396.   motionmmx_builtin_FALSE='#'
  27397. else
  27398.   motionmmx_builtin_TRUE='#'
  27399.   motionmmx_builtin_FALSE=
  27400. fi
  27401.  
  27402.  
  27403.  
  27404. if test x$motionmmxext_plugin = xyes; then
  27405.   motionmmxext_plugin_TRUE=
  27406.   motionmmxext_plugin_FALSE='#'
  27407. else
  27408.   motionmmxext_plugin_TRUE='#'
  27409.   motionmmxext_plugin_FALSE=
  27410. fi
  27411.  
  27412.  
  27413.  
  27414. if test x$motionmmxext_builtin = xyes; then
  27415.   motionmmxext_builtin_TRUE=
  27416.   motionmmxext_builtin_FALSE='#'
  27417. else
  27418.   motionmmxext_builtin_TRUE='#'
  27419.   motionmmxext_builtin_FALSE=
  27420. fi
  27421.  
  27422.  
  27423.  
  27424. if test x$motion3dnow_plugin = xyes; then
  27425.   motion3dnow_plugin_TRUE=
  27426.   motion3dnow_plugin_FALSE='#'
  27427. else
  27428.   motion3dnow_plugin_TRUE='#'
  27429.   motion3dnow_plugin_FALSE=
  27430. fi
  27431.  
  27432.  
  27433.  
  27434. if test x$motion3dnow_builtin = xyes; then
  27435.   motion3dnow_builtin_TRUE=
  27436.   motion3dnow_builtin_FALSE='#'
  27437. else
  27438.   motion3dnow_builtin_TRUE='#'
  27439.   motion3dnow_builtin_FALSE=
  27440. fi
  27441.  
  27442.  
  27443.  
  27444.  
  27445.  
  27446. if test x$motionaltivec_plugin = xyes; then
  27447.   motionaltivec_plugin_TRUE=
  27448.   motionaltivec_plugin_FALSE='#'
  27449. else
  27450.   motionaltivec_plugin_TRUE='#'
  27451.   motionaltivec_plugin_FALSE=
  27452. fi
  27453.  
  27454.  
  27455.  
  27456. if test x$motionaltivec_builtin = xyes; then
  27457.   motionaltivec_builtin_TRUE=
  27458.   motionaltivec_builtin_FALSE='#'
  27459. else
  27460.   motionaltivec_builtin_TRUE='#'
  27461.   motionaltivec_builtin_FALSE=
  27462. fi
  27463.  
  27464.  
  27465.  
  27466. if test x$spudec_plugin = xyes; then
  27467.   spudec_plugin_TRUE=
  27468.   spudec_plugin_FALSE='#'
  27469. else
  27470.   spudec_plugin_TRUE='#'
  27471.   spudec_plugin_FALSE=
  27472. fi
  27473.  
  27474.  
  27475.  
  27476. if test x$spudec_builtin = xyes; then
  27477.   spudec_builtin_TRUE=
  27478.   spudec_builtin_FALSE='#'
  27479. else
  27480.   spudec_builtin_TRUE='#'
  27481.   spudec_builtin_FALSE=
  27482. fi
  27483.  
  27484.  
  27485.  
  27486.  
  27487. if test x$lirc_plugin = xyes; then
  27488.   lirc_plugin_TRUE=
  27489.   lirc_plugin_FALSE='#'
  27490. else
  27491.   lirc_plugin_TRUE='#'
  27492.   lirc_plugin_FALSE=
  27493. fi
  27494.  
  27495.  
  27496.  
  27497. if test x$lirc_builtin = xyes; then
  27498.   lirc_builtin_TRUE=
  27499.   lirc_builtin_FALSE='#'
  27500. else
  27501.   lirc_builtin_TRUE='#'
  27502.   lirc_builtin_FALSE=
  27503. fi
  27504.  
  27505.  
  27506.  
  27507. if test x$rc_plugin = xyes; then
  27508.   rc_plugin_TRUE=
  27509.   rc_plugin_FALSE='#'
  27510. else
  27511.   rc_plugin_TRUE='#'
  27512.   rc_plugin_FALSE=
  27513. fi
  27514.  
  27515.  
  27516.  
  27517. if test x$rc_builtin = xyes; then
  27518.   rc_builtin_TRUE=
  27519.   rc_builtin_FALSE='#'
  27520. else
  27521.   rc_builtin_TRUE='#'
  27522.   rc_builtin_FALSE=
  27523. fi
  27524.  
  27525.  
  27526.  
  27527. if test x$gestures_plugin = xyes; then
  27528.   gestures_plugin_TRUE=
  27529.   gestures_plugin_FALSE='#'
  27530. else
  27531.   gestures_plugin_TRUE='#'
  27532.   gestures_plugin_FALSE=
  27533. fi
  27534.  
  27535.  
  27536.  
  27537. if test x$gestures_builtin = xyes; then
  27538.   gestures_builtin_TRUE=
  27539.   gestures_builtin_FALSE='#'
  27540. else
  27541.   gestures_builtin_TRUE='#'
  27542.   gestures_builtin_FALSE=
  27543. fi
  27544.  
  27545.  
  27546.  
  27547. if test x$a52sys_plugin = xyes; then
  27548.   a52sys_plugin_TRUE=
  27549.   a52sys_plugin_FALSE='#'
  27550. else
  27551.   a52sys_plugin_TRUE='#'
  27552.   a52sys_plugin_FALSE=
  27553. fi
  27554.  
  27555.  
  27556.  
  27557. if test x$a52sys_builtin = xyes; then
  27558.   a52sys_builtin_TRUE=
  27559.   a52sys_builtin_FALSE='#'
  27560. else
  27561.   a52sys_builtin_TRUE='#'
  27562.   a52sys_builtin_FALSE=
  27563. fi
  27564.  
  27565.  
  27566.  
  27567. if test x$flac_plugin = xyes; then
  27568.   flac_plugin_TRUE=
  27569.   flac_plugin_FALSE='#'
  27570. else
  27571.   flac_plugin_TRUE='#'
  27572.   flac_plugin_FALSE=
  27573. fi
  27574.  
  27575.  
  27576.  
  27577. if test x$flac_builtin = xyes; then
  27578.   flac_builtin_TRUE=
  27579.   flac_builtin_FALSE='#'
  27580. else
  27581.   flac_builtin_TRUE='#'
  27582.   flac_builtin_FALSE=
  27583. fi
  27584.  
  27585.  
  27586.  
  27587.  
  27588.  
  27589. if test x$ogg_plugin = xyes; then
  27590.   ogg_plugin_TRUE=
  27591.   ogg_plugin_FALSE='#'
  27592. else
  27593.   ogg_plugin_TRUE='#'
  27594.   ogg_plugin_FALSE=
  27595. fi
  27596.  
  27597.  
  27598.  
  27599. if test x$ogg_builtin = xyes; then
  27600.   ogg_builtin_TRUE=
  27601.   ogg_builtin_FALSE='#'
  27602. else
  27603.   ogg_builtin_TRUE='#'
  27604.   ogg_builtin_FALSE=
  27605. fi
  27606.  
  27607.  
  27608.  
  27609. if test x$m3u_plugin = xyes; then
  27610.   m3u_plugin_TRUE=
  27611.   m3u_plugin_FALSE='#'
  27612. else
  27613.   m3u_plugin_TRUE='#'
  27614.   m3u_plugin_FALSE=
  27615. fi
  27616.  
  27617.  
  27618.  
  27619. if test x$m3u_builtin = xyes; then
  27620.   m3u_builtin_TRUE=
  27621.   m3u_builtin_FALSE='#'
  27622. else
  27623.   m3u_builtin_TRUE='#'
  27624.   m3u_builtin_FALSE=
  27625. fi
  27626.  
  27627.  
  27628.  
  27629. if test x$demuxdump_plugin = xyes; then
  27630.   demuxdump_plugin_TRUE=
  27631.   demuxdump_plugin_FALSE='#'
  27632. else
  27633.   demuxdump_plugin_TRUE='#'
  27634.   demuxdump_plugin_FALSE=
  27635. fi
  27636.  
  27637.  
  27638.  
  27639. if test x$demuxdump_builtin = xyes; then
  27640.   demuxdump_builtin_TRUE=
  27641.   demuxdump_builtin_FALSE='#'
  27642. else
  27643.   demuxdump_builtin_TRUE='#'
  27644.   demuxdump_builtin_FALSE=
  27645. fi
  27646.  
  27647.  
  27648.  
  27649. if test x$rawdv_plugin = xyes; then
  27650.   rawdv_plugin_TRUE=
  27651.   rawdv_plugin_FALSE='#'
  27652. else
  27653.   rawdv_plugin_TRUE='#'
  27654.   rawdv_plugin_FALSE=
  27655. fi
  27656.  
  27657.  
  27658.  
  27659. if test x$rawdv_builtin = xyes; then
  27660.   rawdv_builtin_TRUE=
  27661.   rawdv_builtin_FALSE='#'
  27662. else
  27663.   rawdv_builtin_TRUE='#'
  27664.   rawdv_builtin_FALSE=
  27665. fi
  27666.  
  27667.  
  27668.  
  27669. if test x$au_plugin = xyes; then
  27670.   au_plugin_TRUE=
  27671.   au_plugin_FALSE='#'
  27672. else
  27673.   au_plugin_TRUE='#'
  27674.   au_plugin_FALSE=
  27675. fi
  27676.  
  27677.  
  27678.  
  27679. if test x$au_builtin = xyes; then
  27680.   au_builtin_TRUE=
  27681.   au_builtin_FALSE='#'
  27682. else
  27683.   au_builtin_TRUE='#'
  27684.   au_builtin_FALSE=
  27685. fi
  27686.  
  27687.  
  27688.  
  27689. if test x$aac_plugin = xyes; then
  27690.   aac_plugin_TRUE=
  27691.   aac_plugin_FALSE='#'
  27692. else
  27693.   aac_plugin_TRUE='#'
  27694.   aac_plugin_FALSE=
  27695. fi
  27696.  
  27697.  
  27698.  
  27699. if test x$aac_builtin = xyes; then
  27700.   aac_builtin_TRUE=
  27701.   aac_builtin_FALSE='#'
  27702. else
  27703.   aac_builtin_TRUE='#'
  27704.   aac_builtin_FALSE=
  27705. fi
  27706.  
  27707.  
  27708.  
  27709. if test x$avi_plugin = xyes; then
  27710.   avi_plugin_TRUE=
  27711.   avi_plugin_FALSE='#'
  27712. else
  27713.   avi_plugin_TRUE='#'
  27714.   avi_plugin_FALSE=
  27715. fi
  27716.  
  27717.  
  27718.  
  27719. if test x$avi_builtin = xyes; then
  27720.   avi_builtin_TRUE=
  27721.   avi_builtin_FALSE='#'
  27722. else
  27723.   avi_builtin_TRUE='#'
  27724.   avi_builtin_FALSE=
  27725. fi
  27726.  
  27727.  
  27728.  
  27729. if test x$asf_plugin = xyes; then
  27730.   asf_plugin_TRUE=
  27731.   asf_plugin_FALSE='#'
  27732. else
  27733.   asf_plugin_TRUE='#'
  27734.   asf_plugin_FALSE=
  27735. fi
  27736.  
  27737.  
  27738.  
  27739. if test x$asf_builtin = xyes; then
  27740.   asf_builtin_TRUE=
  27741.   asf_builtin_FALSE='#'
  27742. else
  27743.   asf_builtin_TRUE='#'
  27744.   asf_builtin_FALSE=
  27745. fi
  27746.  
  27747.  
  27748.  
  27749.  
  27750. if test x$mp4_plugin = xyes; then
  27751.   mp4_plugin_TRUE=
  27752.   mp4_plugin_FALSE='#'
  27753. else
  27754.   mp4_plugin_TRUE='#'
  27755.   mp4_plugin_FALSE=
  27756. fi
  27757.  
  27758.  
  27759.  
  27760. if test x$mp4_builtin = xyes; then
  27761.   mp4_builtin_TRUE=
  27762.   mp4_builtin_FALSE='#'
  27763. else
  27764.   mp4_builtin_TRUE='#'
  27765.   mp4_builtin_FALSE=
  27766. fi
  27767.  
  27768.  
  27769.  
  27770. if test x$mpeg_system_plugin = xyes; then
  27771.   mpeg_system_plugin_TRUE=
  27772.   mpeg_system_plugin_FALSE='#'
  27773. else
  27774.   mpeg_system_plugin_TRUE='#'
  27775.   mpeg_system_plugin_FALSE=
  27776. fi
  27777.  
  27778.  
  27779.  
  27780. if test x$mpeg_system_builtin = xyes; then
  27781.   mpeg_system_builtin_TRUE=
  27782.   mpeg_system_builtin_FALSE='#'
  27783. else
  27784.   mpeg_system_builtin_TRUE='#'
  27785.   mpeg_system_builtin_FALSE=
  27786. fi
  27787.  
  27788.  
  27789.  
  27790. if test x$es_plugin = xyes; then
  27791.   es_plugin_TRUE=
  27792.   es_plugin_FALSE='#'
  27793. else
  27794.   es_plugin_TRUE='#'
  27795.   es_plugin_FALSE=
  27796. fi
  27797.  
  27798.  
  27799.  
  27800. if test x$es_builtin = xyes; then
  27801.   es_builtin_TRUE=
  27802.   es_builtin_FALSE='#'
  27803. else
  27804.   es_builtin_TRUE='#'
  27805.   es_builtin_FALSE=
  27806. fi
  27807.  
  27808.  
  27809.  
  27810. if test x$m4v_plugin = xyes; then
  27811.   m4v_plugin_TRUE=
  27812.   m4v_plugin_FALSE='#'
  27813. else
  27814.   m4v_plugin_TRUE='#'
  27815.   m4v_plugin_FALSE=
  27816. fi
  27817.  
  27818.  
  27819.  
  27820. if test x$m4v_builtin = xyes; then
  27821.   m4v_builtin_TRUE=
  27822.   m4v_builtin_FALSE='#'
  27823. else
  27824.   m4v_builtin_TRUE='#'
  27825.   m4v_builtin_FALSE=
  27826. fi
  27827.  
  27828.  
  27829.  
  27830. if test x$ps_plugin = xyes; then
  27831.   ps_plugin_TRUE=
  27832.   ps_plugin_FALSE='#'
  27833. else
  27834.   ps_plugin_TRUE='#'
  27835.   ps_plugin_FALSE=
  27836. fi
  27837.  
  27838.  
  27839.  
  27840. if test x$ps_builtin = xyes; then
  27841.   ps_builtin_TRUE=
  27842.   ps_builtin_FALSE='#'
  27843. else
  27844.   ps_builtin_TRUE='#'
  27845.   ps_builtin_FALSE=
  27846. fi
  27847.  
  27848.  
  27849.  
  27850. if test x$ts_plugin = xyes; then
  27851.   ts_plugin_TRUE=
  27852.   ts_plugin_FALSE='#'
  27853. else
  27854.   ts_plugin_TRUE='#'
  27855.   ts_plugin_FALSE=
  27856. fi
  27857.  
  27858.  
  27859.  
  27860. if test x$ts_builtin = xyes; then
  27861.   ts_builtin_TRUE=
  27862.   ts_builtin_FALSE='#'
  27863. else
  27864.   ts_builtin_TRUE='#'
  27865.   ts_builtin_FALSE=
  27866. fi
  27867.  
  27868.  
  27869.  
  27870.  
  27871.  
  27872. if test x$ts_dvbpsi_plugin = xyes; then
  27873.   ts_dvbpsi_plugin_TRUE=
  27874.   ts_dvbpsi_plugin_FALSE='#'
  27875. else
  27876.   ts_dvbpsi_plugin_TRUE='#'
  27877.   ts_dvbpsi_plugin_FALSE=
  27878. fi
  27879.  
  27880.  
  27881.  
  27882. if test x$ts_dvbpsi_builtin = xyes; then
  27883.   ts_dvbpsi_builtin_TRUE=
  27884.   ts_dvbpsi_builtin_FALSE='#'
  27885. else
  27886.   ts_dvbpsi_builtin_TRUE='#'
  27887.   ts_dvbpsi_builtin_FALSE=
  27888. fi
  27889.  
  27890.  
  27891.  
  27892. if test x$audio_plugin = xyes; then
  27893.   audio_plugin_TRUE=
  27894.   audio_plugin_FALSE='#'
  27895. else
  27896.   audio_plugin_TRUE='#'
  27897.   audio_plugin_FALSE=
  27898. fi
  27899.  
  27900.  
  27901.  
  27902. if test x$audio_builtin = xyes; then
  27903.   audio_builtin_TRUE=
  27904.   audio_builtin_FALSE='#'
  27905. else
  27906.   audio_builtin_TRUE='#'
  27907.   audio_builtin_FALSE=
  27908. fi
  27909.  
  27910.  
  27911.  
  27912. if test x$id3_plugin = xyes; then
  27913.   id3_plugin_TRUE=
  27914.   id3_plugin_FALSE='#'
  27915. else
  27916.   id3_plugin_TRUE='#'
  27917.   id3_plugin_FALSE=
  27918. fi
  27919.  
  27920.  
  27921.  
  27922. if test x$id3_builtin = xyes; then
  27923.   id3_builtin_TRUE=
  27924.   id3_builtin_FALSE='#'
  27925. else
  27926.   id3_builtin_TRUE='#'
  27927.   id3_builtin_FALSE=
  27928. fi
  27929.  
  27930.  
  27931.  
  27932.  
  27933. if test x$id3tag_plugin = xyes; then
  27934.   id3tag_plugin_TRUE=
  27935.   id3tag_plugin_FALSE='#'
  27936. else
  27937.   id3tag_plugin_TRUE='#'
  27938.   id3tag_plugin_FALSE=
  27939. fi
  27940.  
  27941.  
  27942.  
  27943. if test x$id3tag_builtin = xyes; then
  27944.   id3tag_builtin_TRUE=
  27945.   id3tag_builtin_FALSE='#'
  27946. else
  27947.   id3tag_builtin_TRUE='#'
  27948.   id3tag_builtin_FALSE=
  27949. fi
  27950.  
  27951.  
  27952.  
  27953. if test x$demuxsub_plugin = xyes; then
  27954.   demuxsub_plugin_TRUE=
  27955.   demuxsub_plugin_FALSE='#'
  27956. else
  27957.   demuxsub_plugin_TRUE='#'
  27958.   demuxsub_plugin_FALSE=
  27959. fi
  27960.  
  27961.  
  27962.  
  27963. if test x$demuxsub_builtin = xyes; then
  27964.   demuxsub_builtin_TRUE=
  27965.   demuxsub_builtin_FALSE='#'
  27966. else
  27967.   demuxsub_builtin_TRUE='#'
  27968.   demuxsub_builtin_FALSE=
  27969. fi
  27970.  
  27971.  
  27972.  
  27973. if test x$wav_plugin = xyes; then
  27974.   wav_plugin_TRUE=
  27975.   wav_plugin_FALSE='#'
  27976. else
  27977.   wav_plugin_TRUE='#'
  27978.   wav_plugin_FALSE=
  27979. fi
  27980.  
  27981.  
  27982.  
  27983. if test x$wav_builtin = xyes; then
  27984.   wav_builtin_TRUE=
  27985.   wav_builtin_FALSE='#'
  27986. else
  27987.   wav_builtin_TRUE='#'
  27988.   wav_builtin_FALSE=
  27989. fi
  27990.  
  27991.  
  27992.  
  27993. if test x$encoder_xvid_plugin = xyes; then
  27994.   encoder_xvid_plugin_TRUE=
  27995.   encoder_xvid_plugin_FALSE='#'
  27996. else
  27997.   encoder_xvid_plugin_TRUE='#'
  27998.   encoder_xvid_plugin_FALSE=
  27999. fi
  28000.  
  28001.  
  28002.  
  28003. if test x$encoder_xvid_builtin = xyes; then
  28004.   encoder_xvid_builtin_TRUE=
  28005.   encoder_xvid_builtin_FALSE='#'
  28006. else
  28007.   encoder_xvid_builtin_TRUE='#'
  28008.   encoder_xvid_builtin_FALSE=
  28009. fi
  28010.  
  28011.  
  28012.  
  28013. if test x$encoder_ffmpeg_plugin = xyes; then
  28014.   encoder_ffmpeg_plugin_TRUE=
  28015.   encoder_ffmpeg_plugin_FALSE='#'
  28016. else
  28017.   encoder_ffmpeg_plugin_TRUE='#'
  28018.   encoder_ffmpeg_plugin_FALSE=
  28019. fi
  28020.  
  28021.  
  28022.  
  28023. if test x$encoder_ffmpeg_builtin = xyes; then
  28024.   encoder_ffmpeg_builtin_TRUE=
  28025.   encoder_ffmpeg_builtin_FALSE='#'
  28026. else
  28027.   encoder_ffmpeg_builtin_TRUE='#'
  28028.   encoder_ffmpeg_builtin_FALSE=
  28029. fi
  28030.  
  28031.  
  28032.  
  28033.  
  28034. if test x$beos_plugin = xyes; then
  28035.   beos_plugin_TRUE=
  28036.   beos_plugin_FALSE='#'
  28037. else
  28038.   beos_plugin_TRUE='#'
  28039.   beos_plugin_FALSE=
  28040. fi
  28041.  
  28042.  
  28043.  
  28044. if test x$beos_builtin = xyes; then
  28045.   beos_builtin_TRUE=
  28046.   beos_builtin_FALSE='#'
  28047. else
  28048.   beos_builtin_TRUE='#'
  28049.   beos_builtin_FALSE=
  28050. fi
  28051.  
  28052.  
  28053.  
  28054.  
  28055.  
  28056. if test x$familiar_plugin = xyes; then
  28057.   familiar_plugin_TRUE=
  28058.   familiar_plugin_FALSE='#'
  28059. else
  28060.   familiar_plugin_TRUE='#'
  28061.   familiar_plugin_FALSE=
  28062. fi
  28063.  
  28064.  
  28065.  
  28066. if test x$familiar_builtin = xyes; then
  28067.   familiar_builtin_TRUE=
  28068.   familiar_builtin_FALSE='#'
  28069. else
  28070.   familiar_builtin_TRUE='#'
  28071.   familiar_builtin_FALSE=
  28072. fi
  28073.  
  28074.  
  28075.  
  28076.  
  28077.  
  28078. if test x$gtk_plugin = xyes; then
  28079.   gtk_plugin_TRUE=
  28080.   gtk_plugin_FALSE='#'
  28081. else
  28082.   gtk_plugin_TRUE='#'
  28083.   gtk_plugin_FALSE=
  28084. fi
  28085.  
  28086.  
  28087.  
  28088. if test x$gtk_builtin = xyes; then
  28089.   gtk_builtin_TRUE=
  28090.   gtk_builtin_FALSE='#'
  28091. else
  28092.   gtk_builtin_TRUE='#'
  28093.   gtk_builtin_FALSE=
  28094. fi
  28095.  
  28096.  
  28097.  
  28098.  
  28099.  
  28100. if test x$gnome_plugin = xyes; then
  28101.   gnome_plugin_TRUE=
  28102.   gnome_plugin_FALSE='#'
  28103. else
  28104.   gnome_plugin_TRUE='#'
  28105.   gnome_plugin_FALSE=
  28106. fi
  28107.  
  28108.  
  28109.  
  28110. if test x$gnome_builtin = xyes; then
  28111.   gnome_builtin_TRUE=
  28112.   gnome_builtin_FALSE='#'
  28113. else
  28114.   gnome_builtin_TRUE='#'
  28115.   gnome_builtin_FALSE=
  28116. fi
  28117.  
  28118.  
  28119.  
  28120.  
  28121.  
  28122. if test x$gtk2_plugin = xyes; then
  28123.   gtk2_plugin_TRUE=
  28124.   gtk2_plugin_FALSE='#'
  28125. else
  28126.   gtk2_plugin_TRUE='#'
  28127.   gtk2_plugin_FALSE=
  28128. fi
  28129.  
  28130.  
  28131.  
  28132. if test x$gtk2_builtin = xyes; then
  28133.   gtk2_builtin_TRUE=
  28134.   gtk2_builtin_FALSE='#'
  28135. else
  28136.   gtk2_builtin_TRUE='#'
  28137.   gtk2_builtin_FALSE=
  28138. fi
  28139.  
  28140.  
  28141.  
  28142.  
  28143.  
  28144. if test x$gnome2_plugin = xyes; then
  28145.   gnome2_plugin_TRUE=
  28146.   gnome2_plugin_FALSE='#'
  28147. else
  28148.   gnome2_plugin_TRUE='#'
  28149.   gnome2_plugin_FALSE=
  28150. fi
  28151.  
  28152.  
  28153.  
  28154. if test x$gnome2_builtin = xyes; then
  28155.   gnome2_builtin_TRUE=
  28156.   gnome2_builtin_FALSE='#'
  28157. else
  28158.   gnome2_builtin_TRUE='#'
  28159.   gnome2_builtin_FALSE=
  28160. fi
  28161.  
  28162.  
  28163.  
  28164.  
  28165.  
  28166. if test x$kde_plugin = xyes; then
  28167.   kde_plugin_TRUE=
  28168.   kde_plugin_FALSE='#'
  28169. else
  28170.   kde_plugin_TRUE='#'
  28171.   kde_plugin_FALSE=
  28172. fi
  28173.  
  28174.  
  28175.  
  28176. if test x$kde_builtin = xyes; then
  28177.   kde_builtin_TRUE=
  28178.   kde_builtin_FALSE='#'
  28179. else
  28180.   kde_builtin_TRUE='#'
  28181.   kde_builtin_FALSE=
  28182. fi
  28183.  
  28184.  
  28185.  
  28186.  
  28187. if test x$macosx_plugin = xyes; then
  28188.   macosx_plugin_TRUE=
  28189.   macosx_plugin_FALSE='#'
  28190. else
  28191.   macosx_plugin_TRUE='#'
  28192.   macosx_plugin_FALSE=
  28193. fi
  28194.  
  28195.  
  28196.  
  28197. if test x$macosx_builtin = xyes; then
  28198.   macosx_builtin_TRUE=
  28199.   macosx_builtin_FALSE='#'
  28200. else
  28201.   macosx_builtin_TRUE='#'
  28202.   macosx_builtin_FALSE=
  28203. fi
  28204.  
  28205.  
  28206.  
  28207.  
  28208. if test x$ncurses_plugin = xyes; then
  28209.   ncurses_plugin_TRUE=
  28210.   ncurses_plugin_FALSE='#'
  28211. else
  28212.   ncurses_plugin_TRUE='#'
  28213.   ncurses_plugin_FALSE=
  28214. fi
  28215.  
  28216.  
  28217.  
  28218. if test x$ncurses_builtin = xyes; then
  28219.   ncurses_builtin_TRUE=
  28220.   ncurses_builtin_FALSE='#'
  28221. else
  28222.   ncurses_builtin_TRUE='#'
  28223.   ncurses_builtin_FALSE=
  28224. fi
  28225.  
  28226.  
  28227.  
  28228.  
  28229. if test x$qnx_plugin = xyes; then
  28230.   qnx_plugin_TRUE=
  28231.   qnx_plugin_FALSE='#'
  28232. else
  28233.   qnx_plugin_TRUE='#'
  28234.   qnx_plugin_FALSE=
  28235. fi
  28236.  
  28237.  
  28238.  
  28239. if test x$qnx_builtin = xyes; then
  28240.   qnx_builtin_TRUE=
  28241.   qnx_builtin_FALSE='#'
  28242. else
  28243.   qnx_builtin_TRUE='#'
  28244.   qnx_builtin_FALSE=
  28245. fi
  28246.  
  28247.  
  28248.  
  28249.  
  28250.  
  28251. if test x$qt_plugin = xyes; then
  28252.   qt_plugin_TRUE=
  28253.   qt_plugin_FALSE='#'
  28254. else
  28255.   qt_plugin_TRUE='#'
  28256.   qt_plugin_FALSE=
  28257. fi
  28258.  
  28259.  
  28260.  
  28261. if test x$qt_builtin = xyes; then
  28262.   qt_builtin_TRUE=
  28263.   qt_builtin_FALSE='#'
  28264. else
  28265.   qt_builtin_TRUE='#'
  28266.   qt_builtin_FALSE=
  28267. fi
  28268.  
  28269.  
  28270.  
  28271.  
  28272.  
  28273. if test x$skins_plugin = xyes; then
  28274.   skins_plugin_TRUE=
  28275.   skins_plugin_FALSE='#'
  28276. else
  28277.   skins_plugin_TRUE='#'
  28278.   skins_plugin_FALSE=
  28279. fi
  28280.  
  28281.  
  28282.  
  28283. if test x$skins_builtin = xyes; then
  28284.   skins_builtin_TRUE=
  28285.   skins_builtin_FALSE='#'
  28286. else
  28287.   skins_builtin_TRUE='#'
  28288.   skins_builtin_FALSE=
  28289. fi
  28290.  
  28291.  
  28292.  
  28293. if test x$win32_plugin = xyes; then
  28294.   win32_plugin_TRUE=
  28295.   win32_plugin_FALSE='#'
  28296. else
  28297.   win32_plugin_TRUE='#'
  28298.   win32_plugin_FALSE=
  28299. fi
  28300.  
  28301.  
  28302.  
  28303. if test x$win32_builtin = xyes; then
  28304.   win32_builtin_TRUE=
  28305.   win32_builtin_FALSE='#'
  28306. else
  28307.   win32_builtin_TRUE='#'
  28308.   win32_builtin_FALSE=
  28309. fi
  28310.  
  28311.  
  28312.  
  28313.  
  28314.  
  28315. if test x$wxwindows_plugin = xyes; then
  28316.   wxwindows_plugin_TRUE=
  28317.   wxwindows_plugin_FALSE='#'
  28318. else
  28319.   wxwindows_plugin_TRUE='#'
  28320.   wxwindows_plugin_FALSE=
  28321. fi
  28322.  
  28323.  
  28324.  
  28325. if test x$wxwindows_builtin = xyes; then
  28326.   wxwindows_builtin_TRUE=
  28327.   wxwindows_builtin_FALSE='#'
  28328. else
  28329.   wxwindows_builtin_TRUE='#'
  28330.   wxwindows_builtin_FALSE=
  28331. fi
  28332.  
  28333.  
  28334.  
  28335.  
  28336.  
  28337. if test x$gtk_main_plugin = xyes; then
  28338.   gtk_main_plugin_TRUE=
  28339.   gtk_main_plugin_FALSE='#'
  28340. else
  28341.   gtk_main_plugin_TRUE='#'
  28342.   gtk_main_plugin_FALSE=
  28343. fi
  28344.  
  28345.  
  28346.  
  28347. if test x$gtk_main_builtin = xyes; then
  28348.   gtk_main_builtin_TRUE=
  28349.   gtk_main_builtin_FALSE='#'
  28350. else
  28351.   gtk_main_builtin_TRUE='#'
  28352.   gtk_main_builtin_FALSE=
  28353. fi
  28354.  
  28355.  
  28356.  
  28357.  
  28358.  
  28359. if test x$gnome_main_plugin = xyes; then
  28360.   gnome_main_plugin_TRUE=
  28361.   gnome_main_plugin_FALSE='#'
  28362. else
  28363.   gnome_main_plugin_TRUE='#'
  28364.   gnome_main_plugin_FALSE=
  28365. fi
  28366.  
  28367.  
  28368.  
  28369. if test x$gnome_main_builtin = xyes; then
  28370.   gnome_main_builtin_TRUE=
  28371.   gnome_main_builtin_FALSE='#'
  28372. else
  28373.   gnome_main_builtin_TRUE='#'
  28374.   gnome_main_builtin_FALSE=
  28375. fi
  28376.  
  28377.  
  28378.  
  28379.  
  28380.  
  28381. if test x$gtk2_main_plugin = xyes; then
  28382.   gtk2_main_plugin_TRUE=
  28383.   gtk2_main_plugin_FALSE='#'
  28384. else
  28385.   gtk2_main_plugin_TRUE='#'
  28386.   gtk2_main_plugin_FALSE=
  28387. fi
  28388.  
  28389.  
  28390.  
  28391. if test x$gtk2_main_builtin = xyes; then
  28392.   gtk2_main_builtin_TRUE=
  28393.   gtk2_main_builtin_FALSE='#'
  28394. else
  28395.   gtk2_main_builtin_TRUE='#'
  28396.   gtk2_main_builtin_FALSE=
  28397. fi
  28398.  
  28399.  
  28400.  
  28401.  
  28402.  
  28403. if test x$gnome2_main_plugin = xyes; then
  28404.   gnome2_main_plugin_TRUE=
  28405.   gnome2_main_plugin_FALSE='#'
  28406. else
  28407.   gnome2_main_plugin_TRUE='#'
  28408.   gnome2_main_plugin_FALSE=
  28409. fi
  28410.  
  28411.  
  28412.  
  28413. if test x$gnome2_main_builtin = xyes; then
  28414.   gnome2_main_builtin_TRUE=
  28415.   gnome2_main_builtin_FALSE='#'
  28416. else
  28417.   gnome2_main_builtin_TRUE='#'
  28418.   gnome2_main_builtin_FALSE=
  28419. fi
  28420.  
  28421.  
  28422.  
  28423.  
  28424. if test x$sap_plugin = xyes; then
  28425.   sap_plugin_TRUE=
  28426.   sap_plugin_FALSE='#'
  28427. else
  28428.   sap_plugin_TRUE='#'
  28429.   sap_plugin_FALSE=
  28430. fi
  28431.  
  28432.  
  28433.  
  28434. if test x$sap_builtin = xyes; then
  28435.   sap_builtin_TRUE=
  28436.   sap_builtin_FALSE='#'
  28437. else
  28438.   sap_builtin_TRUE='#'
  28439.   sap_builtin_FALSE=
  28440. fi
  28441.  
  28442.  
  28443.  
  28444. if test x$screensaver_plugin = xyes; then
  28445.   screensaver_plugin_TRUE=
  28446.   screensaver_plugin_FALSE='#'
  28447. else
  28448.   screensaver_plugin_TRUE='#'
  28449.   screensaver_plugin_FALSE=
  28450. fi
  28451.  
  28452.  
  28453.  
  28454. if test x$screensaver_builtin = xyes; then
  28455.   screensaver_builtin_TRUE=
  28456.   screensaver_builtin_FALSE='#'
  28457. else
  28458.   screensaver_builtin_TRUE='#'
  28459.   screensaver_builtin_FALSE=
  28460. fi
  28461.  
  28462.  
  28463.  
  28464.  
  28465.  
  28466. if test x$qte_main_plugin = xyes; then
  28467.   qte_main_plugin_TRUE=
  28468.   qte_main_plugin_FALSE='#'
  28469. else
  28470.   qte_main_plugin_TRUE='#'
  28471.   qte_main_plugin_FALSE=
  28472. fi
  28473.  
  28474.  
  28475.  
  28476. if test x$qte_main_builtin = xyes; then
  28477.   qte_main_builtin_TRUE=
  28478.   qte_main_builtin_FALSE='#'
  28479. else
  28480.   qte_main_builtin_TRUE='#'
  28481.   qte_main_builtin_FALSE=
  28482. fi
  28483.  
  28484.  
  28485.  
  28486.  
  28487. if test x$httpd_plugin = xyes; then
  28488.   httpd_plugin_TRUE=
  28489.   httpd_plugin_FALSE='#'
  28490. else
  28491.   httpd_plugin_TRUE='#'
  28492.   httpd_plugin_FALSE=
  28493. fi
  28494.  
  28495.  
  28496.  
  28497. if test x$httpd_builtin = xyes; then
  28498.   httpd_builtin_TRUE=
  28499.   httpd_builtin_FALSE='#'
  28500. else
  28501.   httpd_builtin_TRUE='#'
  28502.   httpd_builtin_FALSE=
  28503. fi
  28504.  
  28505.  
  28506.  
  28507. if test x$dummy_plugin = xyes; then
  28508.   dummy_plugin_TRUE=
  28509.   dummy_plugin_FALSE='#'
  28510. else
  28511.   dummy_plugin_TRUE='#'
  28512.   dummy_plugin_FALSE=
  28513. fi
  28514.  
  28515.  
  28516.  
  28517. if test x$dummy_builtin = xyes; then
  28518.   dummy_builtin_TRUE=
  28519.   dummy_builtin_FALSE='#'
  28520. else
  28521.   dummy_builtin_TRUE='#'
  28522.   dummy_builtin_FALSE=
  28523. fi
  28524.  
  28525.  
  28526.  
  28527. if test x$logger_plugin = xyes; then
  28528.   logger_plugin_TRUE=
  28529.   logger_plugin_FALSE='#'
  28530. else
  28531.   logger_plugin_TRUE='#'
  28532.   logger_plugin_FALSE=
  28533. fi
  28534.  
  28535.  
  28536.  
  28537. if test x$logger_builtin = xyes; then
  28538.   logger_builtin_TRUE=
  28539.   logger_builtin_FALSE='#'
  28540. else
  28541.   logger_builtin_TRUE='#'
  28542.   logger_builtin_FALSE=
  28543. fi
  28544.  
  28545.  
  28546.  
  28547. if test x$memcpy_plugin = xyes; then
  28548.   memcpy_plugin_TRUE=
  28549.   memcpy_plugin_FALSE='#'
  28550. else
  28551.   memcpy_plugin_TRUE='#'
  28552.   memcpy_plugin_FALSE=
  28553. fi
  28554.  
  28555.  
  28556.  
  28557. if test x$memcpy_builtin = xyes; then
  28558.   memcpy_builtin_TRUE=
  28559.   memcpy_builtin_FALSE='#'
  28560. else
  28561.   memcpy_builtin_TRUE='#'
  28562.   memcpy_builtin_FALSE=
  28563. fi
  28564.  
  28565.  
  28566.  
  28567. if test x$memcpymmx_plugin = xyes; then
  28568.   memcpymmx_plugin_TRUE=
  28569.   memcpymmx_plugin_FALSE='#'
  28570. else
  28571.   memcpymmx_plugin_TRUE='#'
  28572.   memcpymmx_plugin_FALSE=
  28573. fi
  28574.  
  28575.  
  28576.  
  28577. if test x$memcpymmx_builtin = xyes; then
  28578.   memcpymmx_builtin_TRUE=
  28579.   memcpymmx_builtin_FALSE='#'
  28580. else
  28581.   memcpymmx_builtin_TRUE='#'
  28582.   memcpymmx_builtin_FALSE=
  28583. fi
  28584.  
  28585.  
  28586.  
  28587. if test x$memcpymmxext_plugin = xyes; then
  28588.   memcpymmxext_plugin_TRUE=
  28589.   memcpymmxext_plugin_FALSE='#'
  28590. else
  28591.   memcpymmxext_plugin_TRUE='#'
  28592.   memcpymmxext_plugin_FALSE=
  28593. fi
  28594.  
  28595.  
  28596.  
  28597. if test x$memcpymmxext_builtin = xyes; then
  28598.   memcpymmxext_builtin_TRUE=
  28599.   memcpymmxext_builtin_FALSE='#'
  28600. else
  28601.   memcpymmxext_builtin_TRUE='#'
  28602.   memcpymmxext_builtin_FALSE=
  28603. fi
  28604.  
  28605.  
  28606.  
  28607. if test x$memcpy3dn_plugin = xyes; then
  28608.   memcpy3dn_plugin_TRUE=
  28609.   memcpy3dn_plugin_FALSE='#'
  28610. else
  28611.   memcpy3dn_plugin_TRUE='#'
  28612.   memcpy3dn_plugin_FALSE=
  28613. fi
  28614.  
  28615.  
  28616.  
  28617. if test x$memcpy3dn_builtin = xyes; then
  28618.   memcpy3dn_builtin_TRUE=
  28619.   memcpy3dn_builtin_FALSE='#'
  28620. else
  28621.   memcpy3dn_builtin_TRUE='#'
  28622.   memcpy3dn_builtin_FALSE=
  28623. fi
  28624.  
  28625.  
  28626.  
  28627.  
  28628.  
  28629. if test x$memcpyaltivec_plugin = xyes; then
  28630.   memcpyaltivec_plugin_TRUE=
  28631.   memcpyaltivec_plugin_FALSE='#'
  28632. else
  28633.   memcpyaltivec_plugin_TRUE='#'
  28634.   memcpyaltivec_plugin_FALSE=
  28635. fi
  28636.  
  28637.  
  28638.  
  28639. if test x$memcpyaltivec_builtin = xyes; then
  28640.   memcpyaltivec_builtin_TRUE=
  28641.   memcpyaltivec_builtin_FALSE='#'
  28642. else
  28643.   memcpyaltivec_builtin_TRUE='#'
  28644.   memcpyaltivec_builtin_FALSE=
  28645. fi
  28646.  
  28647.  
  28648.  
  28649.  
  28650. if test x$ipv4_plugin = xyes; then
  28651.   ipv4_plugin_TRUE=
  28652.   ipv4_plugin_FALSE='#'
  28653. else
  28654.   ipv4_plugin_TRUE='#'
  28655.   ipv4_plugin_FALSE=
  28656. fi
  28657.  
  28658.  
  28659.  
  28660. if test x$ipv4_builtin = xyes; then
  28661.   ipv4_builtin_TRUE=
  28662.   ipv4_builtin_FALSE='#'
  28663. else
  28664.   ipv4_builtin_TRUE='#'
  28665.   ipv4_builtin_FALSE=
  28666. fi
  28667.  
  28668.  
  28669.  
  28670.  
  28671. if test x$ipv6_plugin = xyes; then
  28672.   ipv6_plugin_TRUE=
  28673.   ipv6_plugin_FALSE='#'
  28674. else
  28675.   ipv6_plugin_TRUE='#'
  28676.   ipv6_plugin_FALSE=
  28677. fi
  28678.  
  28679.  
  28680.  
  28681. if test x$ipv6_builtin = xyes; then
  28682.   ipv6_builtin_TRUE=
  28683.   ipv6_builtin_FALSE='#'
  28684. else
  28685.   ipv6_builtin_TRUE='#'
  28686.   ipv6_builtin_FALSE=
  28687. fi
  28688.  
  28689.  
  28690.  
  28691. if test x$test1_plugin = xyes; then
  28692.   test1_plugin_TRUE=
  28693.   test1_plugin_FALSE='#'
  28694. else
  28695.   test1_plugin_TRUE='#'
  28696.   test1_plugin_FALSE=
  28697. fi
  28698.  
  28699.  
  28700.  
  28701. if test x$test1_builtin = xyes; then
  28702.   test1_builtin_TRUE=
  28703.   test1_builtin_FALSE='#'
  28704. else
  28705.   test1_builtin_TRUE='#'
  28706.   test1_builtin_FALSE=
  28707. fi
  28708.  
  28709.  
  28710.  
  28711.  
  28712. if test x$test2_plugin = xyes; then
  28713.   test2_plugin_TRUE=
  28714.   test2_plugin_FALSE='#'
  28715. else
  28716.   test2_plugin_TRUE='#'
  28717.   test2_plugin_FALSE=
  28718. fi
  28719.  
  28720.  
  28721.  
  28722. if test x$test2_builtin = xyes; then
  28723.   test2_builtin_TRUE=
  28724.   test2_builtin_FALSE='#'
  28725. else
  28726.   test2_builtin_TRUE='#'
  28727.   test2_builtin_FALSE=
  28728. fi
  28729.  
  28730.  
  28731.  
  28732.  
  28733.  
  28734. if test x$test3_plugin = xyes; then
  28735.   test3_plugin_TRUE=
  28736.   test3_plugin_FALSE='#'
  28737. else
  28738.   test3_plugin_TRUE='#'
  28739.   test3_plugin_FALSE=
  28740. fi
  28741.  
  28742.  
  28743.  
  28744. if test x$test3_builtin = xyes; then
  28745.   test3_builtin_TRUE=
  28746.   test3_builtin_FALSE='#'
  28747. else
  28748.   test3_builtin_TRUE='#'
  28749.   test3_builtin_FALSE=
  28750. fi
  28751.  
  28752.  
  28753.  
  28754. if test x$test4_plugin = xyes; then
  28755.   test4_plugin_TRUE=
  28756.   test4_plugin_FALSE='#'
  28757. else
  28758.   test4_plugin_TRUE='#'
  28759.   test4_plugin_FALSE=
  28760. fi
  28761.  
  28762.  
  28763.  
  28764. if test x$test4_builtin = xyes; then
  28765.   test4_builtin_TRUE=
  28766.   test4_builtin_FALSE='#'
  28767. else
  28768.   test4_builtin_TRUE='#'
  28769.   test4_builtin_FALSE=
  28770. fi
  28771.  
  28772.  
  28773.  
  28774. if test x$mux_dummy_plugin = xyes; then
  28775.   mux_dummy_plugin_TRUE=
  28776.   mux_dummy_plugin_FALSE='#'
  28777. else
  28778.   mux_dummy_plugin_TRUE='#'
  28779.   mux_dummy_plugin_FALSE=
  28780. fi
  28781.  
  28782.  
  28783.  
  28784. if test x$mux_dummy_builtin = xyes; then
  28785.   mux_dummy_builtin_TRUE=
  28786.   mux_dummy_builtin_FALSE='#'
  28787. else
  28788.   mux_dummy_builtin_TRUE='#'
  28789.   mux_dummy_builtin_FALSE=
  28790. fi
  28791.  
  28792.  
  28793.  
  28794. if test x$mux_avi_plugin = xyes; then
  28795.   mux_avi_plugin_TRUE=
  28796.   mux_avi_plugin_FALSE='#'
  28797. else
  28798.   mux_avi_plugin_TRUE='#'
  28799.   mux_avi_plugin_FALSE=
  28800. fi
  28801.  
  28802.  
  28803.  
  28804. if test x$mux_avi_builtin = xyes; then
  28805.   mux_avi_builtin_TRUE=
  28806.   mux_avi_builtin_FALSE='#'
  28807. else
  28808.   mux_avi_builtin_TRUE='#'
  28809.   mux_avi_builtin_FALSE=
  28810. fi
  28811.  
  28812.  
  28813.  
  28814.  
  28815. if test x$mux_ogg_plugin = xyes; then
  28816.   mux_ogg_plugin_TRUE=
  28817.   mux_ogg_plugin_FALSE='#'
  28818. else
  28819.   mux_ogg_plugin_TRUE='#'
  28820.   mux_ogg_plugin_FALSE=
  28821. fi
  28822.  
  28823.  
  28824.  
  28825. if test x$mux_ogg_builtin = xyes; then
  28826.   mux_ogg_builtin_TRUE=
  28827.   mux_ogg_builtin_FALSE='#'
  28828. else
  28829.   mux_ogg_builtin_TRUE='#'
  28830.   mux_ogg_builtin_FALSE=
  28831. fi
  28832.  
  28833.  
  28834.  
  28835. if test x$mux_ps_plugin = xyes; then
  28836.   mux_ps_plugin_TRUE=
  28837.   mux_ps_plugin_FALSE='#'
  28838. else
  28839.   mux_ps_plugin_TRUE='#'
  28840.   mux_ps_plugin_FALSE=
  28841. fi
  28842.  
  28843.  
  28844.  
  28845. if test x$mux_ps_builtin = xyes; then
  28846.   mux_ps_builtin_TRUE=
  28847.   mux_ps_builtin_FALSE='#'
  28848. else
  28849.   mux_ps_builtin_TRUE='#'
  28850.   mux_ps_builtin_FALSE=
  28851. fi
  28852.  
  28853.  
  28854.  
  28855. if test x$mux_ts_plugin = xyes; then
  28856.   mux_ts_plugin_TRUE=
  28857.   mux_ts_plugin_FALSE='#'
  28858. else
  28859.   mux_ts_plugin_TRUE='#'
  28860.   mux_ts_plugin_FALSE=
  28861. fi
  28862.  
  28863.  
  28864.  
  28865. if test x$mux_ts_builtin = xyes; then
  28866.   mux_ts_builtin_TRUE=
  28867.   mux_ts_builtin_FALSE='#'
  28868. else
  28869.   mux_ts_builtin_TRUE='#'
  28870.   mux_ts_builtin_FALSE=
  28871. fi
  28872.  
  28873.  
  28874.  
  28875.  
  28876.  
  28877. if test x$mux_ts_dvbpsi_plugin = xyes; then
  28878.   mux_ts_dvbpsi_plugin_TRUE=
  28879.   mux_ts_dvbpsi_plugin_FALSE='#'
  28880. else
  28881.   mux_ts_dvbpsi_plugin_TRUE='#'
  28882.   mux_ts_dvbpsi_plugin_FALSE=
  28883. fi
  28884.  
  28885.  
  28886.  
  28887. if test x$mux_ts_dvbpsi_builtin = xyes; then
  28888.   mux_ts_dvbpsi_builtin_TRUE=
  28889.   mux_ts_dvbpsi_builtin_FALSE='#'
  28890. else
  28891.   mux_ts_dvbpsi_builtin_TRUE='#'
  28892.   mux_ts_dvbpsi_builtin_FALSE=
  28893. fi
  28894.  
  28895.  
  28896.  
  28897. if test x$packetizer_copy_plugin = xyes; then
  28898.   packetizer_copy_plugin_TRUE=
  28899.   packetizer_copy_plugin_FALSE='#'
  28900. else
  28901.   packetizer_copy_plugin_TRUE='#'
  28902.   packetizer_copy_plugin_FALSE=
  28903. fi
  28904.  
  28905.  
  28906.  
  28907. if test x$packetizer_copy_builtin = xyes; then
  28908.   packetizer_copy_builtin_TRUE=
  28909.   packetizer_copy_builtin_FALSE='#'
  28910. else
  28911.   packetizer_copy_builtin_TRUE='#'
  28912.   packetizer_copy_builtin_FALSE=
  28913. fi
  28914.  
  28915.  
  28916.  
  28917. if test x$packetizer_a52_plugin = xyes; then
  28918.   packetizer_a52_plugin_TRUE=
  28919.   packetizer_a52_plugin_FALSE='#'
  28920. else
  28921.   packetizer_a52_plugin_TRUE='#'
  28922.   packetizer_a52_plugin_FALSE=
  28923. fi
  28924.  
  28925.  
  28926.  
  28927. if test x$packetizer_a52_builtin = xyes; then
  28928.   packetizer_a52_builtin_TRUE=
  28929.   packetizer_a52_builtin_FALSE='#'
  28930. else
  28931.   packetizer_a52_builtin_TRUE='#'
  28932.   packetizer_a52_builtin_FALSE=
  28933. fi
  28934.  
  28935.  
  28936.  
  28937. if test x$packetizer_mpegaudio_plugin = xyes; then
  28938.   packetizer_mpegaudio_plugin_TRUE=
  28939.   packetizer_mpegaudio_plugin_FALSE='#'
  28940. else
  28941.   packetizer_mpegaudio_plugin_TRUE='#'
  28942.   packetizer_mpegaudio_plugin_FALSE=
  28943. fi
  28944.  
  28945.  
  28946.  
  28947. if test x$packetizer_mpegaudio_builtin = xyes; then
  28948.   packetizer_mpegaudio_builtin_TRUE=
  28949.   packetizer_mpegaudio_builtin_FALSE='#'
  28950. else
  28951.   packetizer_mpegaudio_builtin_TRUE='#'
  28952.   packetizer_mpegaudio_builtin_FALSE=
  28953. fi
  28954.  
  28955.  
  28956.  
  28957. if test x$packetizer_mpegvideo_plugin = xyes; then
  28958.   packetizer_mpegvideo_plugin_TRUE=
  28959.   packetizer_mpegvideo_plugin_FALSE='#'
  28960. else
  28961.   packetizer_mpegvideo_plugin_TRUE='#'
  28962.   packetizer_mpegvideo_plugin_FALSE=
  28963. fi
  28964.  
  28965.  
  28966.  
  28967. if test x$packetizer_mpegvideo_builtin = xyes; then
  28968.   packetizer_mpegvideo_builtin_TRUE=
  28969.   packetizer_mpegvideo_builtin_FALSE='#'
  28970. else
  28971.   packetizer_mpegvideo_builtin_TRUE='#'
  28972.   packetizer_mpegvideo_builtin_FALSE=
  28973. fi
  28974.  
  28975.  
  28976.  
  28977. if test x$packetizer_mpeg4video_plugin = xyes; then
  28978.   packetizer_mpeg4video_plugin_TRUE=
  28979.   packetizer_mpeg4video_plugin_FALSE='#'
  28980. else
  28981.   packetizer_mpeg4video_plugin_TRUE='#'
  28982.   packetizer_mpeg4video_plugin_FALSE=
  28983. fi
  28984.  
  28985.  
  28986.  
  28987. if test x$packetizer_mpeg4video_builtin = xyes; then
  28988.   packetizer_mpeg4video_builtin_TRUE=
  28989.   packetizer_mpeg4video_builtin_FALSE='#'
  28990. else
  28991.   packetizer_mpeg4video_builtin_TRUE='#'
  28992.   packetizer_mpeg4video_builtin_FALSE=
  28993. fi
  28994.  
  28995.  
  28996.  
  28997. if test x$packetizer_mpeg4audio_plugin = xyes; then
  28998.   packetizer_mpeg4audio_plugin_TRUE=
  28999.   packetizer_mpeg4audio_plugin_FALSE='#'
  29000. else
  29001.   packetizer_mpeg4audio_plugin_TRUE='#'
  29002.   packetizer_mpeg4audio_plugin_FALSE=
  29003. fi
  29004.  
  29005.  
  29006.  
  29007. if test x$packetizer_mpeg4audio_builtin = xyes; then
  29008.   packetizer_mpeg4audio_builtin_TRUE=
  29009.   packetizer_mpeg4audio_builtin_FALSE='#'
  29010. else
  29011.   packetizer_mpeg4audio_builtin_TRUE='#'
  29012.   packetizer_mpeg4audio_builtin_FALSE=
  29013. fi
  29014.  
  29015.  
  29016.  
  29017.  
  29018. if test x$i420_rgb_plugin = xyes; then
  29019.   i420_rgb_plugin_TRUE=
  29020.   i420_rgb_plugin_FALSE='#'
  29021. else
  29022.   i420_rgb_plugin_TRUE='#'
  29023.   i420_rgb_plugin_FALSE=
  29024. fi
  29025.  
  29026.  
  29027.  
  29028. if test x$i420_rgb_builtin = xyes; then
  29029.   i420_rgb_builtin_TRUE=
  29030.   i420_rgb_builtin_FALSE='#'
  29031. else
  29032.   i420_rgb_builtin_TRUE='#'
  29033.   i420_rgb_builtin_FALSE=
  29034. fi
  29035.  
  29036.  
  29037.  
  29038. if test x$i420_rgb_mmx_plugin = xyes; then
  29039.   i420_rgb_mmx_plugin_TRUE=
  29040.   i420_rgb_mmx_plugin_FALSE='#'
  29041. else
  29042.   i420_rgb_mmx_plugin_TRUE='#'
  29043.   i420_rgb_mmx_plugin_FALSE=
  29044. fi
  29045.  
  29046.  
  29047.  
  29048. if test x$i420_rgb_mmx_builtin = xyes; then
  29049.   i420_rgb_mmx_builtin_TRUE=
  29050.   i420_rgb_mmx_builtin_FALSE='#'
  29051. else
  29052.   i420_rgb_mmx_builtin_TRUE='#'
  29053.   i420_rgb_mmx_builtin_FALSE=
  29054. fi
  29055.  
  29056.  
  29057.  
  29058. if test x$i420_yuy2_plugin = xyes; then
  29059.   i420_yuy2_plugin_TRUE=
  29060.   i420_yuy2_plugin_FALSE='#'
  29061. else
  29062.   i420_yuy2_plugin_TRUE='#'
  29063.   i420_yuy2_plugin_FALSE=
  29064. fi
  29065.  
  29066.  
  29067.  
  29068. if test x$i420_yuy2_builtin = xyes; then
  29069.   i420_yuy2_builtin_TRUE=
  29070.   i420_yuy2_builtin_FALSE='#'
  29071. else
  29072.   i420_yuy2_builtin_TRUE='#'
  29073.   i420_yuy2_builtin_FALSE=
  29074. fi
  29075.  
  29076.  
  29077.  
  29078.  
  29079. if test x$i420_yuy2_mmx_plugin = xyes; then
  29080.   i420_yuy2_mmx_plugin_TRUE=
  29081.   i420_yuy2_mmx_plugin_FALSE='#'
  29082. else
  29083.   i420_yuy2_mmx_plugin_TRUE='#'
  29084.   i420_yuy2_mmx_plugin_FALSE=
  29085. fi
  29086.  
  29087.  
  29088.  
  29089. if test x$i420_yuy2_mmx_builtin = xyes; then
  29090.   i420_yuy2_mmx_builtin_TRUE=
  29091.   i420_yuy2_mmx_builtin_FALSE='#'
  29092. else
  29093.   i420_yuy2_mmx_builtin_TRUE='#'
  29094.   i420_yuy2_mmx_builtin_FALSE=
  29095. fi
  29096.  
  29097.  
  29098.  
  29099. if test x$i422_yuy2_plugin = xyes; then
  29100.   i422_yuy2_plugin_TRUE=
  29101.   i422_yuy2_plugin_FALSE='#'
  29102. else
  29103.   i422_yuy2_plugin_TRUE='#'
  29104.   i422_yuy2_plugin_FALSE=
  29105. fi
  29106.  
  29107.  
  29108.  
  29109. if test x$i422_yuy2_builtin = xyes; then
  29110.   i422_yuy2_builtin_TRUE=
  29111.   i422_yuy2_builtin_FALSE='#'
  29112. else
  29113.   i422_yuy2_builtin_TRUE='#'
  29114.   i422_yuy2_builtin_FALSE=
  29115. fi
  29116.  
  29117.  
  29118.  
  29119. if test x$i422_yuy2_mmx_plugin = xyes; then
  29120.   i422_yuy2_mmx_plugin_TRUE=
  29121.   i422_yuy2_mmx_plugin_FALSE='#'
  29122. else
  29123.   i422_yuy2_mmx_plugin_TRUE='#'
  29124.   i422_yuy2_mmx_plugin_FALSE=
  29125. fi
  29126.  
  29127.  
  29128.  
  29129. if test x$i422_yuy2_mmx_builtin = xyes; then
  29130.   i422_yuy2_mmx_builtin_TRUE=
  29131.   i422_yuy2_mmx_builtin_FALSE='#'
  29132. else
  29133.   i422_yuy2_mmx_builtin_TRUE='#'
  29134.   i422_yuy2_mmx_builtin_FALSE=
  29135. fi
  29136.  
  29137.  
  29138.  
  29139. if test x$i420_ymga_plugin = xyes; then
  29140.   i420_ymga_plugin_TRUE=
  29141.   i420_ymga_plugin_FALSE='#'
  29142. else
  29143.   i420_ymga_plugin_TRUE='#'
  29144.   i420_ymga_plugin_FALSE=
  29145. fi
  29146.  
  29147.  
  29148.  
  29149. if test x$i420_ymga_builtin = xyes; then
  29150.   i420_ymga_builtin_TRUE=
  29151.   i420_ymga_builtin_FALSE='#'
  29152. else
  29153.   i420_ymga_builtin_TRUE='#'
  29154.   i420_ymga_builtin_FALSE=
  29155. fi
  29156.  
  29157.  
  29158.  
  29159. if test x$i420_ymga_mmx_plugin = xyes; then
  29160.   i420_ymga_mmx_plugin_TRUE=
  29161.   i420_ymga_mmx_plugin_FALSE='#'
  29162. else
  29163.   i420_ymga_mmx_plugin_TRUE='#'
  29164.   i420_ymga_mmx_plugin_FALSE=
  29165. fi
  29166.  
  29167.  
  29168.  
  29169. if test x$i420_ymga_mmx_builtin = xyes; then
  29170.   i420_ymga_mmx_builtin_TRUE=
  29171.   i420_ymga_mmx_builtin_FALSE='#'
  29172. else
  29173.   i420_ymga_mmx_builtin_TRUE='#'
  29174.   i420_ymga_mmx_builtin_FALSE=
  29175. fi
  29176.  
  29177.  
  29178.  
  29179. if test x$transform_plugin = xyes; then
  29180.   transform_plugin_TRUE=
  29181.   transform_plugin_FALSE='#'
  29182. else
  29183.   transform_plugin_TRUE='#'
  29184.   transform_plugin_FALSE=
  29185. fi
  29186.  
  29187.  
  29188.  
  29189. if test x$transform_builtin = xyes; then
  29190.   transform_builtin_TRUE=
  29191.   transform_builtin_FALSE='#'
  29192. else
  29193.   transform_builtin_TRUE='#'
  29194.   transform_builtin_FALSE=
  29195. fi
  29196.  
  29197.  
  29198.  
  29199. if test x$invert_plugin = xyes; then
  29200.   invert_plugin_TRUE=
  29201.   invert_plugin_FALSE='#'
  29202. else
  29203.   invert_plugin_TRUE='#'
  29204.   invert_plugin_FALSE=
  29205. fi
  29206.  
  29207.  
  29208.  
  29209. if test x$invert_builtin = xyes; then
  29210.   invert_builtin_TRUE=
  29211.   invert_builtin_FALSE='#'
  29212. else
  29213.   invert_builtin_TRUE='#'
  29214.   invert_builtin_FALSE=
  29215. fi
  29216.  
  29217.  
  29218.  
  29219.  
  29220. if test x$adjust_plugin = xyes; then
  29221.   adjust_plugin_TRUE=
  29222.   adjust_plugin_FALSE='#'
  29223. else
  29224.   adjust_plugin_TRUE='#'
  29225.   adjust_plugin_FALSE=
  29226. fi
  29227.  
  29228.  
  29229.  
  29230. if test x$adjust_builtin = xyes; then
  29231.   adjust_builtin_TRUE=
  29232.   adjust_builtin_FALSE='#'
  29233. else
  29234.   adjust_builtin_TRUE='#'
  29235.   adjust_builtin_FALSE=
  29236. fi
  29237.  
  29238.  
  29239.  
  29240.  
  29241. if test x$distort_plugin = xyes; then
  29242.   distort_plugin_TRUE=
  29243.   distort_plugin_FALSE='#'
  29244. else
  29245.   distort_plugin_TRUE='#'
  29246.   distort_plugin_FALSE=
  29247. fi
  29248.  
  29249.  
  29250.  
  29251. if test x$distort_builtin = xyes; then
  29252.   distort_builtin_TRUE=
  29253.   distort_builtin_FALSE='#'
  29254. else
  29255.   distort_builtin_TRUE='#'
  29256.   distort_builtin_FALSE=
  29257. fi
  29258.  
  29259.  
  29260.  
  29261. if test x$wall_plugin = xyes; then
  29262.   wall_plugin_TRUE=
  29263.   wall_plugin_FALSE='#'
  29264. else
  29265.   wall_plugin_TRUE='#'
  29266.   wall_plugin_FALSE=
  29267. fi
  29268.  
  29269.  
  29270.  
  29271. if test x$wall_builtin = xyes; then
  29272.   wall_builtin_TRUE=
  29273.   wall_builtin_FALSE='#'
  29274. else
  29275.   wall_builtin_TRUE='#'
  29276.   wall_builtin_FALSE=
  29277. fi
  29278.  
  29279.  
  29280.  
  29281. if test x$clone_plugin = xyes; then
  29282.   clone_plugin_TRUE=
  29283.   clone_plugin_FALSE='#'
  29284. else
  29285.   clone_plugin_TRUE='#'
  29286.   clone_plugin_FALSE=
  29287. fi
  29288.  
  29289.  
  29290.  
  29291. if test x$clone_builtin = xyes; then
  29292.   clone_builtin_TRUE=
  29293.   clone_builtin_FALSE='#'
  29294. else
  29295.   clone_builtin_TRUE='#'
  29296.   clone_builtin_FALSE=
  29297. fi
  29298.  
  29299.  
  29300.  
  29301. if test x$crop_plugin = xyes; then
  29302.   crop_plugin_TRUE=
  29303.   crop_plugin_FALSE='#'
  29304. else
  29305.   crop_plugin_TRUE='#'
  29306.   crop_plugin_FALSE=
  29307. fi
  29308.  
  29309.  
  29310.  
  29311. if test x$crop_builtin = xyes; then
  29312.   crop_builtin_TRUE=
  29313.   crop_builtin_FALSE='#'
  29314. else
  29315.   crop_builtin_TRUE='#'
  29316.   crop_builtin_FALSE=
  29317. fi
  29318.  
  29319.  
  29320.  
  29321. if test x$motionblur_plugin = xyes; then
  29322.   motionblur_plugin_TRUE=
  29323.   motionblur_plugin_FALSE='#'
  29324. else
  29325.   motionblur_plugin_TRUE='#'
  29326.   motionblur_plugin_FALSE=
  29327. fi
  29328.  
  29329.  
  29330.  
  29331. if test x$motionblur_builtin = xyes; then
  29332.   motionblur_builtin_TRUE=
  29333.   motionblur_builtin_FALSE='#'
  29334. else
  29335.   motionblur_builtin_TRUE='#'
  29336.   motionblur_builtin_FALSE=
  29337. fi
  29338.  
  29339.  
  29340.  
  29341.  
  29342.  
  29343. if test x$osdtext_plugin = xyes; then
  29344.   osdtext_plugin_TRUE=
  29345.   osdtext_plugin_FALSE='#'
  29346. else
  29347.   osdtext_plugin_TRUE='#'
  29348.   osdtext_plugin_FALSE=
  29349. fi
  29350.  
  29351.  
  29352.  
  29353. if test x$osdtext_builtin = xyes; then
  29354.   osdtext_builtin_TRUE=
  29355.   osdtext_builtin_FALSE='#'
  29356. else
  29357.   osdtext_builtin_TRUE='#'
  29358.   osdtext_builtin_FALSE=
  29359. fi
  29360.  
  29361.  
  29362.  
  29363. if test x$deinterlace_plugin = xyes; then
  29364.   deinterlace_plugin_TRUE=
  29365.   deinterlace_plugin_FALSE='#'
  29366. else
  29367.   deinterlace_plugin_TRUE='#'
  29368.   deinterlace_plugin_FALSE=
  29369. fi
  29370.  
  29371.  
  29372.  
  29373. if test x$deinterlace_builtin = xyes; then
  29374.   deinterlace_builtin_TRUE=
  29375.   deinterlace_builtin_FALSE='#'
  29376. else
  29377.   deinterlace_builtin_TRUE='#'
  29378.   deinterlace_builtin_FALSE=
  29379. fi
  29380.  
  29381.  
  29382.  
  29383.  
  29384. if test x$aa_plugin = xyes; then
  29385.   aa_plugin_TRUE=
  29386.   aa_plugin_FALSE='#'
  29387. else
  29388.   aa_plugin_TRUE='#'
  29389.   aa_plugin_FALSE=
  29390. fi
  29391.  
  29392.  
  29393.  
  29394. if test x$aa_builtin = xyes; then
  29395.   aa_builtin_TRUE=
  29396.   aa_builtin_FALSE='#'
  29397. else
  29398.   aa_builtin_TRUE='#'
  29399.   aa_builtin_FALSE=
  29400. fi
  29401.  
  29402.  
  29403.  
  29404. if test x$fb_plugin = xyes; then
  29405.   fb_plugin_TRUE=
  29406.   fb_plugin_FALSE='#'
  29407. else
  29408.   fb_plugin_TRUE='#'
  29409.   fb_plugin_FALSE=
  29410. fi
  29411.  
  29412.  
  29413.  
  29414. if test x$fb_builtin = xyes; then
  29415.   fb_builtin_TRUE=
  29416.   fb_builtin_FALSE='#'
  29417. else
  29418.   fb_builtin_TRUE='#'
  29419.   fb_builtin_FALSE=
  29420. fi
  29421.  
  29422.  
  29423.  
  29424.  
  29425.  
  29426. if test x$ggi_plugin = xyes; then
  29427.   ggi_plugin_TRUE=
  29428.   ggi_plugin_FALSE='#'
  29429. else
  29430.   ggi_plugin_TRUE='#'
  29431.   ggi_plugin_FALSE=
  29432. fi
  29433.  
  29434.  
  29435.  
  29436. if test x$ggi_builtin = xyes; then
  29437.   ggi_builtin_TRUE=
  29438.   ggi_builtin_FALSE='#'
  29439. else
  29440.   ggi_builtin_TRUE='#'
  29441.   ggi_builtin_FALSE=
  29442. fi
  29443.  
  29444.  
  29445.  
  29446.  
  29447.  
  29448. if test x$glide_plugin = xyes; then
  29449.   glide_plugin_TRUE=
  29450.   glide_plugin_FALSE='#'
  29451. else
  29452.   glide_plugin_TRUE='#'
  29453.   glide_plugin_FALSE=
  29454. fi
  29455.  
  29456.  
  29457.  
  29458. if test x$glide_builtin = xyes; then
  29459.   glide_builtin_TRUE=
  29460.   glide_builtin_FALSE='#'
  29461. else
  29462.   glide_builtin_TRUE='#'
  29463.   glide_builtin_FALSE=
  29464. fi
  29465.  
  29466.  
  29467.  
  29468.  
  29469.  
  29470. if test x$vout_sdl_plugin = xyes; then
  29471.   vout_sdl_plugin_TRUE=
  29472.   vout_sdl_plugin_FALSE='#'
  29473. else
  29474.   vout_sdl_plugin_TRUE='#'
  29475.   vout_sdl_plugin_FALSE=
  29476. fi
  29477.  
  29478.  
  29479.  
  29480. if test x$vout_sdl_builtin = xyes; then
  29481.   vout_sdl_builtin_TRUE=
  29482.   vout_sdl_builtin_FALSE='#'
  29483. else
  29484.   vout_sdl_builtin_TRUE='#'
  29485.   vout_sdl_builtin_FALSE=
  29486. fi
  29487.  
  29488.  
  29489.  
  29490.  
  29491. if test x$svgalib_plugin = xyes; then
  29492.   svgalib_plugin_TRUE=
  29493.   svgalib_plugin_FALSE='#'
  29494. else
  29495.   svgalib_plugin_TRUE='#'
  29496.   svgalib_plugin_FALSE=
  29497. fi
  29498.  
  29499.  
  29500.  
  29501. if test x$svgalib_builtin = xyes; then
  29502.   svgalib_builtin_TRUE=
  29503.   svgalib_builtin_FALSE='#'
  29504. else
  29505.   svgalib_builtin_TRUE='#'
  29506.   svgalib_builtin_FALSE=
  29507. fi
  29508.  
  29509.  
  29510.  
  29511.  
  29512. if test x$wingdi_plugin = xyes; then
  29513.   wingdi_plugin_TRUE=
  29514.   wingdi_plugin_FALSE='#'
  29515. else
  29516.   wingdi_plugin_TRUE='#'
  29517.   wingdi_plugin_FALSE=
  29518. fi
  29519.  
  29520.  
  29521.  
  29522. if test x$wingdi_builtin = xyes; then
  29523.   wingdi_builtin_TRUE=
  29524.   wingdi_builtin_FALSE='#'
  29525. else
  29526.   wingdi_builtin_TRUE='#'
  29527.   wingdi_builtin_FALSE=
  29528. fi
  29529.  
  29530.  
  29531.  
  29532. if test x$vout_encoder_plugin = xyes; then
  29533.   vout_encoder_plugin_TRUE=
  29534.   vout_encoder_plugin_FALSE='#'
  29535. else
  29536.   vout_encoder_plugin_TRUE='#'
  29537.   vout_encoder_plugin_FALSE=
  29538. fi
  29539.  
  29540.  
  29541.  
  29542. if test x$vout_encoder_builtin = xyes; then
  29543.   vout_encoder_builtin_TRUE=
  29544.   vout_encoder_builtin_FALSE='#'
  29545. else
  29546.   vout_encoder_builtin_TRUE='#'
  29547.   vout_encoder_builtin_FALSE=
  29548. fi
  29549.  
  29550.  
  29551.  
  29552.  
  29553.  
  29554. if test x$vout_directx_plugin = xyes; then
  29555.   vout_directx_plugin_TRUE=
  29556.   vout_directx_plugin_FALSE='#'
  29557. else
  29558.   vout_directx_plugin_TRUE='#'
  29559.   vout_directx_plugin_FALSE=
  29560. fi
  29561.  
  29562.  
  29563.  
  29564. if test x$vout_directx_builtin = xyes; then
  29565.   vout_directx_builtin_TRUE=
  29566.   vout_directx_builtin_FALSE='#'
  29567. else
  29568.   vout_directx_builtin_TRUE='#'
  29569.   vout_directx_builtin_FALSE=
  29570. fi
  29571.  
  29572.  
  29573.  
  29574. if test x$mga_plugin = xyes; then
  29575.   mga_plugin_TRUE=
  29576.   mga_plugin_FALSE='#'
  29577. else
  29578.   mga_plugin_TRUE='#'
  29579.   mga_plugin_FALSE=
  29580. fi
  29581.  
  29582.  
  29583.  
  29584. if test x$mga_builtin = xyes; then
  29585.   mga_builtin_TRUE=
  29586.   mga_builtin_FALSE='#'
  29587. else
  29588.   mga_builtin_TRUE='#'
  29589.   mga_builtin_FALSE=
  29590. fi
  29591.  
  29592.  
  29593.  
  29594. if test x$xmga_plugin = xyes; then
  29595.   xmga_plugin_TRUE=
  29596.   xmga_plugin_FALSE='#'
  29597. else
  29598.   xmga_plugin_TRUE='#'
  29599.   xmga_plugin_FALSE=
  29600. fi
  29601.  
  29602.  
  29603.  
  29604. if test x$xmga_builtin = xyes; then
  29605.   xmga_builtin_TRUE=
  29606.   xmga_builtin_FALSE='#'
  29607. else
  29608.   xmga_builtin_TRUE='#'
  29609.   xmga_builtin_FALSE=
  29610. fi
  29611.  
  29612.  
  29613.  
  29614.  
  29615.  
  29616. if test x$qte_plugin = xyes; then
  29617.   qte_plugin_TRUE=
  29618.   qte_plugin_FALSE='#'
  29619. else
  29620.   qte_plugin_TRUE='#'
  29621.   qte_plugin_FALSE=
  29622. fi
  29623.  
  29624.  
  29625.  
  29626. if test x$qte_builtin = xyes; then
  29627.   qte_builtin_TRUE=
  29628.   qte_builtin_FALSE='#'
  29629. else
  29630.   qte_builtin_TRUE='#'
  29631.   qte_builtin_FALSE=
  29632. fi
  29633.  
  29634.  
  29635.  
  29636.  
  29637.  
  29638. if test x$x11_plugin = xyes; then
  29639.   x11_plugin_TRUE=
  29640.   x11_plugin_FALSE='#'
  29641. else
  29642.   x11_plugin_TRUE='#'
  29643.   x11_plugin_FALSE=
  29644. fi
  29645.  
  29646.  
  29647.  
  29648. if test x$x11_builtin = xyes; then
  29649.   x11_builtin_TRUE=
  29650.   x11_builtin_FALSE='#'
  29651. else
  29652.   x11_builtin_TRUE='#'
  29653.   x11_builtin_FALSE=
  29654. fi
  29655.  
  29656.  
  29657.  
  29658.  
  29659.  
  29660. if test x$xvideo_plugin = xyes; then
  29661.   xvideo_plugin_TRUE=
  29662.   xvideo_plugin_FALSE='#'
  29663. else
  29664.   xvideo_plugin_TRUE='#'
  29665.   xvideo_plugin_FALSE=
  29666. fi
  29667.  
  29668.  
  29669.  
  29670. if test x$xvideo_builtin = xyes; then
  29671.   xvideo_builtin_TRUE=
  29672.   xvideo_builtin_FALSE='#'
  29673. else
  29674.   xvideo_builtin_TRUE='#'
  29675.   xvideo_builtin_FALSE=
  29676. fi
  29677.  
  29678.  
  29679.  
  29680. if test x$scope_plugin = xyes; then
  29681.   scope_plugin_TRUE=
  29682.   scope_plugin_FALSE='#'
  29683. else
  29684.   scope_plugin_TRUE='#'
  29685.   scope_plugin_FALSE=
  29686. fi
  29687.  
  29688.  
  29689.  
  29690. if test x$scope_builtin = xyes; then
  29691.   scope_builtin_TRUE=
  29692.   scope_builtin_FALSE='#'
  29693. else
  29694.   scope_builtin_TRUE='#'
  29695.   scope_builtin_FALSE=
  29696. fi
  29697.  
  29698.  
  29699.  
  29700.  
  29701. if test x$xosd_plugin = xyes; then
  29702.   xosd_plugin_TRUE=
  29703.   xosd_plugin_FALSE='#'
  29704. else
  29705.   xosd_plugin_TRUE='#'
  29706.   xosd_plugin_FALSE=
  29707. fi
  29708.  
  29709.  
  29710.  
  29711. if test x$xosd_builtin = xyes; then
  29712.   xosd_builtin_TRUE=
  29713.   xosd_builtin_FALSE='#'
  29714. else
  29715.   xosd_builtin_TRUE='#'
  29716.   xosd_builtin_FALSE=
  29717. fi
  29718.  
  29719.  
  29720.  
  29721. if false; then
  29722.   UNTRUE_TRUE=
  29723.   UNTRUE_FALSE='#'
  29724. else
  29725.   UNTRUE_TRUE='#'
  29726.   UNTRUE_FALSE=
  29727. fi
  29728.  
  29729.  
  29730.  
  29731.  
  29732. cat >>confdefs.h <<_ACEOF
  29733. #define VERSION_MESSAGE "${VERSION} ${CODENAME}"
  29734. _ACEOF
  29735.  
  29736.  
  29737. cat >>confdefs.h <<_ACEOF
  29738. #define COPYRIGHT_MESSAGE "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2003 VideoLAN"
  29739. _ACEOF
  29740.  
  29741.  
  29742. cat >>confdefs.h <<_ACEOF
  29743. #define CONFIGURE_LINE "${CONFIGURE_LINE}"
  29744. _ACEOF
  29745.  
  29746.  
  29747. VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-/__/'`"
  29748.  
  29749. cat >>confdefs.h <<_ACEOF
  29750. #define MODULE_SUFFIX "__${VLC_SYMBOL}"
  29751. _ACEOF
  29752.  
  29753.  
  29754. cat >>confdefs.h <<_ACEOF
  29755. #define MODULE_SYMBOL ${VLC_SYMBOL}
  29756. _ACEOF
  29757.  
  29758.  
  29759. cat >>confdefs.h <<_ACEOF
  29760. #define LIBEXT "${LIBEXT}"
  29761. _ACEOF
  29762.  
  29763.  
  29764. DATA_PATH="${ac_tool_prefix}/share/vlc"
  29765.  
  29766. PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
  29767.  
  29768.  
  29769. CPPFLAGS="${CPPFLAGS_save}"
  29770. CFLAGS="${CFLAGS_save}"
  29771. CXXFLAGS="${CXXFLAGS_save}"
  29772. OBJCFLAGS="${OBJCFLAGS_save}"
  29773. LDFLAGS="${LDFLAGS_save}"
  29774.  
  29775. AUTOMAKE_SUCKS="\$(L_builtin) \$(LDFLAGS_builtin)"
  29776.  
  29777.  
  29778. LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtins}"
  29779. for i in `echo "${BUILTINS}" | sed -e 's@^ */@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
  29780.  
  29781.  
  29782.  
  29783.  
  29784.  
  29785.  
  29786.  
  29787.  
  29788.  
  29789.  
  29790.  
  29791.  
  29792.  
  29793.  
  29794.  
  29795.  
  29796.  
  29797.  
  29798.  
  29799.  
  29800.  
  29801.  
  29802.  
  29803.  
  29804.  
  29805.  
  29806.  
  29807.  
  29808.  
  29809.  
  29810.  
  29811.  
  29812.  
  29813.  
  29814.                                                                                                                                   ac_config_files="$ac_config_files Makefile autotools/Makefile debian/Makefile doc/Makefile intl/Makefile ipkg/Makefile lib/Makefile m4/Makefile modules/Makefile po/Makefile.in share/Makefile src/Makefile vlc-config"
  29815.           ac_config_commands="$ac_config_commands default"
  29816. cat >confcache <<\_ACEOF
  29817. # This file is a shell script that caches the results of configure
  29818. # tests run on this system so they can be shared between configure
  29819. # scripts and configure runs, see configure's option --config-cache.
  29820. # It is not useful on other systems.  If it contains results you don't
  29821. # want to keep, you may remove or edit it.
  29822. #
  29823. # config.status only pays attention to the cache file if you give it
  29824. # the --recheck option to rerun configure.
  29825. #
  29826. # `ac_cv_env_foo' variables (set or unset) will be overridden when
  29827. # loading this file, other *unset* `ac_cv_foo' will be assigned the
  29828. # following values.
  29829.  
  29830. _ACEOF
  29831.  
  29832. # The following way of writing the cache mishandles newlines in values,
  29833. # but we know of no workaround that is simple, portable, and efficient.
  29834. # So, don't put newlines in cache variables' values.
  29835. # Ultrix sh set writes to stderr and can't be redirected directly,
  29836. # and sets the high bit in the cache file unless we assign to the vars.
  29837. {
  29838.   (set) 2>&1 |
  29839.     case `(ac_space=' '; set | grep ac_space) 2>&1` in
  29840.     *ac_space=\ *)
  29841.       # `set' does not quote correctly, so add quotes (double-quote
  29842.       # substitution turns \\\\ into \\, and sed turns \\ into \).
  29843.       sed -n \
  29844.         "s/'/'\\\\''/g;
  29845.           s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
  29846.       ;;
  29847.     *)
  29848.       # `set' quotes correctly as required by POSIX, so do not add quotes.
  29849.       sed -n \
  29850.         "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
  29851.       ;;
  29852.     esac;
  29853. } |
  29854.   sed '
  29855.      t clear
  29856.      : clear
  29857.      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
  29858.      t end
  29859.      /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
  29860.      : end' >>confcache
  29861. if diff $cache_file confcache >/dev/null 2>&1; then :; else
  29862.   if test -w $cache_file; then
  29863.     test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
  29864.     cat confcache >$cache_file
  29865.   else
  29866.     echo "not updating unwritable cache $cache_file"
  29867.   fi
  29868. fi
  29869. rm -f confcache
  29870.  
  29871. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  29872. # Let make expand exec_prefix.
  29873. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  29874.  
  29875. # VPATH may cause trouble with some makes, so we remove $(srcdir),
  29876. # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  29877. # trailing colons and then remove the whole line if VPATH becomes empty
  29878. # (actually we leave an empty line to preserve line numbers).
  29879. if test "x$srcdir" = x.; then
  29880.   ac_vpsub='/^[     ]*VPATH[     ]*=/{
  29881. s/:*\$(srcdir):*/:/;
  29882. s/:*\${srcdir}:*/:/;
  29883. s/:*@srcdir@:*/:/;
  29884. s/^\([^=]*=[     ]*\):*/\1/;
  29885. s/:*$//;
  29886. s/^[^=]*=[     ]*$//;
  29887. }'
  29888. fi
  29889.  
  29890. DEFS=-DHAVE_CONFIG_H
  29891.  
  29892. ac_libobjs=
  29893. ac_ltlibobjs=
  29894. for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  29895.   # 1. Remove the extension, and $U if already installed.
  29896.   ac_i=`echo "$ac_i" |
  29897.          sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
  29898.   # 2. Add them.
  29899.   ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
  29900.   ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
  29901. done
  29902. LIBOBJS=$ac_libobjs
  29903.  
  29904. LTLIBOBJS=$ac_ltlibobjs
  29905.  
  29906.  
  29907. if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
  29908.   { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
  29909. Usually this means the macro was only invoked conditionally." >&5
  29910. echo "$as_me: error: conditional \"AMDEP\" was never defined.
  29911. Usually this means the macro was only invoked conditionally." >&2;}
  29912.    { (exit 1); exit 1; }; }
  29913. fi
  29914. if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
  29915.   { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
  29916. Usually this means the macro was only invoked conditionally." >&5
  29917. echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
  29918. Usually this means the macro was only invoked conditionally." >&2;}
  29919.    { (exit 1); exit 1; }; }
  29920. fi
  29921. if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
  29922.   { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
  29923. Usually this means the macro was only invoked conditionally." >&5
  29924. echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
  29925. Usually this means the macro was only invoked conditionally." >&2;}
  29926.    { (exit 1); exit 1; }; }
  29927. fi
  29928. if test -z "${am__fastdepOBJC_TRUE}" && test -z "${am__fastdepOBJC_FALSE}"; then
  29929.   { { echo "$as_me:$LINENO: error: conditional \"am__fastdepOBJC\" was never defined.
  29930. Usually this means the macro was only invoked conditionally." >&5
  29931. echo "$as_me: error: conditional \"am__fastdepOBJC\" was never defined.
  29932. Usually this means the macro was only invoked conditionally." >&2;}
  29933.    { (exit 1); exit 1; }; }
  29934. fi
  29935. if test -z "${HAVE_BEOS_TRUE}" && test -z "${HAVE_BEOS_FALSE}"; then
  29936.   { { echo "$as_me:$LINENO: error: conditional \"HAVE_BEOS\" was never defined.
  29937. Usually this means the macro was only invoked conditionally." >&5
  29938. echo "$as_me: error: conditional \"HAVE_BEOS\" was never defined.
  29939. Usually this means the macro was only invoked conditionally." >&2;}
  29940.    { (exit 1); exit 1; }; }
  29941. fi
  29942. if test -z "${HAVE_DARWIN_TRUE}" && test -z "${HAVE_DARWIN_FALSE}"; then
  29943.   { { echo "$as_me:$LINENO: error: conditional \"HAVE_DARWIN\" was never defined.
  29944. Usually this means the macro was only invoked conditionally." >&5
  29945. echo "$as_me: error: conditional \"HAVE_DARWIN\" was never defined.
  29946. Usually this means the macro was only invoked conditionally." >&2;}
  29947.    { (exit 1); exit 1; }; }
  29948. fi
  29949. if test -z "${HAVE_WIN32_TRUE}" && test -z "${HAVE_WIN32_FALSE}"; then
  29950.   { { echo "$as_me:$LINENO: error: conditional \"HAVE_WIN32\" was never defined.
  29951. Usually this means the macro was only invoked conditionally." >&5
  29952. echo "$as_me: error: conditional \"HAVE_WIN32\" was never defined.
  29953. Usually this means the macro was only invoked conditionally." >&2;}
  29954.    { (exit 1); exit 1; }; }
  29955. fi
  29956. if test -z "${BUILD_INTL_TRUE}" && test -z "${BUILD_INTL_FALSE}"; then
  29957.   { { echo "$as_me:$LINENO: error: conditional \"BUILD_INTL\" was never defined.
  29958. Usually this means the macro was only invoked conditionally." >&5
  29959. echo "$as_me: error: conditional \"BUILD_INTL\" was never defined.
  29960. Usually this means the macro was only invoked conditionally." >&2;}
  29961.    { (exit 1); exit 1; }; }
  29962. fi
  29963. if test -z "${BUILD_GETOPT_TRUE}" && test -z "${BUILD_GETOPT_FALSE}"; then
  29964.   { { echo "$as_me:$LINENO: error: conditional \"BUILD_GETOPT\" was never defined.
  29965. Usually this means the macro was only invoked conditionally." >&5
  29966. echo "$as_me: error: conditional \"BUILD_GETOPT\" was never defined.
  29967. Usually this means the macro was only invoked conditionally." >&2;}
  29968.    { (exit 1); exit 1; }; }
  29969. fi
  29970. if test -z "${BUILD_DIRENT_TRUE}" && test -z "${BUILD_DIRENT_FALSE}"; then
  29971.   { { echo "$as_me:$LINENO: error: conditional \"BUILD_DIRENT\" was never defined.
  29972. Usually this means the macro was only invoked conditionally." >&5
  29973. echo "$as_me: error: conditional \"BUILD_DIRENT\" was never defined.
  29974. Usually this means the macro was only invoked conditionally." >&2;}
  29975.    { (exit 1); exit 1; }; }
  29976. fi
  29977. if test -z "${GPROF_TRUE}" && test -z "${GPROF_FALSE}"; then
  29978.   { { echo "$as_me:$LINENO: error: conditional \"GPROF\" was never defined.
  29979. Usually this means the macro was only invoked conditionally." >&5
  29980. echo "$as_me: error: conditional \"GPROF\" was never defined.
  29981. Usually this means the macro was only invoked conditionally." >&2;}
  29982.    { (exit 1); exit 1; }; }
  29983. fi
  29984. if test -z "${CPROF_TRUE}" && test -z "${CPROF_FALSE}"; then
  29985.   { { echo "$as_me:$LINENO: error: conditional \"CPROF\" was never defined.
  29986. Usually this means the macro was only invoked conditionally." >&5
  29987. echo "$as_me: error: conditional \"CPROF\" was never defined.
  29988. Usually this means the macro was only invoked conditionally." >&2;}
  29989.    { (exit 1); exit 1; }; }
  29990. fi
  29991. if test -z "${OPTIM_TRUE}" && test -z "${OPTIM_FALSE}"; then
  29992.   { { echo "$as_me:$LINENO: error: conditional \"OPTIM\" was never defined.
  29993. Usually this means the macro was only invoked conditionally." >&5
  29994. echo "$as_me: error: conditional \"OPTIM\" was never defined.
  29995. Usually this means the macro was only invoked conditionally." >&2;}
  29996.    { (exit 1); exit 1; }; }
  29997. fi
  29998. if test -z "${DEBUG_TRUE}" && test -z "${DEBUG_FALSE}"; then
  29999.   { { echo "$as_me:$LINENO: error: conditional \"DEBUG\" was never defined.
  30000. Usually this means the macro was only invoked conditionally." >&5
  30001. echo "$as_me: error: conditional \"DEBUG\" was never defined.
  30002. Usually this means the macro was only invoked conditionally." >&2;}
  30003.    { (exit 1); exit 1; }; }
  30004. fi
  30005. if test -z "${RELEASE_TRUE}" && test -z "${RELEASE_FALSE}"; then
  30006.   { { echo "$as_me:$LINENO: error: conditional \"RELEASE\" was never defined.
  30007. Usually this means the macro was only invoked conditionally." >&5
  30008. echo "$as_me: error: conditional \"RELEASE\" was never defined.
  30009. Usually this means the macro was only invoked conditionally." >&2;}
  30010.    { (exit 1); exit 1; }; }
  30011. fi
  30012. if test -z "${BUILD_MOZILLA_TRUE}" && test -z "${BUILD_MOZILLA_FALSE}"; then
  30013.   { { echo "$as_me:$LINENO: error: conditional \"BUILD_MOZILLA\" was never defined.
  30014. Usually this means the macro was only invoked conditionally." >&5
  30015. echo "$as_me: error: conditional \"BUILD_MOZILLA\" was never defined.
  30016. Usually this means the macro was only invoked conditionally." >&2;}
  30017.    { (exit 1); exit 1; }; }
  30018. fi
  30019. if test -z "${HAVE_PLUGINS_TRUE}" && test -z "${HAVE_PLUGINS_FALSE}"; then
  30020.   { { echo "$as_me:$LINENO: error: conditional \"HAVE_PLUGINS\" was never defined.
  30021. Usually this means the macro was only invoked conditionally." >&5
  30022. echo "$as_me: error: conditional \"HAVE_PLUGINS\" was never defined.
  30023. Usually this means the macro was only invoked conditionally." >&2;}
  30024.    { (exit 1); exit 1; }; }
  30025. fi
  30026. if test -z "${HAVE_BUILTINS_TRUE}" && test -z "${HAVE_BUILTINS_FALSE}"; then
  30027.   { { echo "$as_me:$LINENO: error: conditional \"HAVE_BUILTINS\" was never defined.
  30028. Usually this means the macro was only invoked conditionally." >&5
  30029. echo "$as_me: error: conditional \"HAVE_BUILTINS\" was never defined.
  30030. Usually this means the macro was only invoked conditionally." >&2;}
  30031.    { (exit 1); exit 1; }; }
  30032. fi
  30033. if test -z "${access_file_plugin_TRUE}" && test -z "${access_file_plugin_FALSE}"; then
  30034.   { { echo "$as_me:$LINENO: error: conditional \"access_file_plugin\" was never defined.
  30035. Usually this means the macro was only invoked conditionally." >&5
  30036. echo "$as_me: error: conditional \"access_file_plugin\" was never defined.
  30037. Usually this means the macro was only invoked conditionally." >&2;}
  30038.    { (exit 1); exit 1; }; }
  30039. fi
  30040. if test -z "${access_file_builtin_TRUE}" && test -z "${access_file_builtin_FALSE}"; then
  30041.   { { echo "$as_me:$LINENO: error: conditional \"access_file_builtin\" was never defined.
  30042. Usually this means the macro was only invoked conditionally." >&5
  30043. echo "$as_me: error: conditional \"access_file_builtin\" was never defined.
  30044. Usually this means the macro was only invoked conditionally." >&2;}
  30045.    { (exit 1); exit 1; }; }
  30046. fi
  30047. if test -z "${access_directory_plugin_TRUE}" && test -z "${access_directory_plugin_FALSE}"; then
  30048.   { { echo "$as_me:$LINENO: error: conditional \"access_directory_plugin\" was never defined.
  30049. Usually this means the macro was only invoked conditionally." >&5
  30050. echo "$as_me: error: conditional \"access_directory_plugin\" was never defined.
  30051. Usually this means the macro was only invoked conditionally." >&2;}
  30052.    { (exit 1); exit 1; }; }
  30053. fi
  30054. if test -z "${access_directory_builtin_TRUE}" && test -z "${access_directory_builtin_FALSE}"; then
  30055.   { { echo "$as_me:$LINENO: error: conditional \"access_directory_builtin\" was never defined.
  30056. Usually this means the macro was only invoked conditionally." >&5
  30057. echo "$as_me: error: conditional \"access_directory_builtin\" was never defined.
  30058. Usually this means the macro was only invoked conditionally." >&2;}
  30059.    { (exit 1); exit 1; }; }
  30060. fi
  30061. if test -z "${access_udp_plugin_TRUE}" && test -z "${access_udp_plugin_FALSE}"; then
  30062.   { { echo "$as_me:$LINENO: error: conditional \"access_udp_plugin\" was never defined.
  30063. Usually this means the macro was only invoked conditionally." >&5
  30064. echo "$as_me: error: conditional \"access_udp_plugin\" was never defined.
  30065. Usually this means the macro was only invoked conditionally." >&2;}
  30066.    { (exit 1); exit 1; }; }
  30067. fi
  30068. if test -z "${access_udp_builtin_TRUE}" && test -z "${access_udp_builtin_FALSE}"; then
  30069.   { { echo "$as_me:$LINENO: error: conditional \"access_udp_builtin\" was never defined.
  30070. Usually this means the macro was only invoked conditionally." >&5
  30071. echo "$as_me: error: conditional \"access_udp_builtin\" was never defined.
  30072. Usually this means the macro was only invoked conditionally." >&2;}
  30073.    { (exit 1); exit 1; }; }
  30074. fi
  30075. if test -z "${access_http_plugin_TRUE}" && test -z "${access_http_plugin_FALSE}"; then
  30076.   { { echo "$as_me:$LINENO: error: conditional \"access_http_plugin\" was never defined.
  30077. Usually this means the macro was only invoked conditionally." >&5
  30078. echo "$as_me: error: conditional \"access_http_plugin\" was never defined.
  30079. Usually this means the macro was only invoked conditionally." >&2;}
  30080.    { (exit 1); exit 1; }; }
  30081. fi
  30082. if test -z "${access_http_builtin_TRUE}" && test -z "${access_http_builtin_FALSE}"; then
  30083.   { { echo "$as_me:$LINENO: error: conditional \"access_http_builtin\" was never defined.
  30084. Usually this means the macro was only invoked conditionally." >&5
  30085. echo "$as_me: error: conditional \"access_http_builtin\" was never defined.
  30086. Usually this means the macro was only invoked conditionally." >&2;}
  30087.    { (exit 1); exit 1; }; }
  30088. fi
  30089. if test -z "${access_ftp_plugin_TRUE}" && test -z "${access_ftp_plugin_FALSE}"; then
  30090.   { { echo "$as_me:$LINENO: error: conditional \"access_ftp_plugin\" was never defined.
  30091. Usually this means the macro was only invoked conditionally." >&5
  30092. echo "$as_me: error: conditional \"access_ftp_plugin\" was never defined.
  30093. Usually this means the macro was only invoked conditionally." >&2;}
  30094.    { (exit 1); exit 1; }; }
  30095. fi
  30096. if test -z "${access_ftp_builtin_TRUE}" && test -z "${access_ftp_builtin_FALSE}"; then
  30097.   { { echo "$as_me:$LINENO: error: conditional \"access_ftp_builtin\" was never defined.
  30098. Usually this means the macro was only invoked conditionally." >&5
  30099. echo "$as_me: error: conditional \"access_ftp_builtin\" was never defined.
  30100. Usually this means the macro was only invoked conditionally." >&2;}
  30101.    { (exit 1); exit 1; }; }
  30102. fi
  30103. if test -z "${slp_plugin_TRUE}" && test -z "${slp_plugin_FALSE}"; then
  30104.   { { echo "$as_me:$LINENO: error: conditional \"slp_plugin\" was never defined.
  30105. Usually this means the macro was only invoked conditionally." >&5
  30106. echo "$as_me: error: conditional \"slp_plugin\" was never defined.
  30107. Usually this means the macro was only invoked conditionally." >&2;}
  30108.    { (exit 1); exit 1; }; }
  30109. fi
  30110. if test -z "${slp_builtin_TRUE}" && test -z "${slp_builtin_FALSE}"; then
  30111.   { { echo "$as_me:$LINENO: error: conditional \"slp_builtin\" was never defined.
  30112. Usually this means the macro was only invoked conditionally." >&5
  30113. echo "$as_me: error: conditional \"slp_builtin\" was never defined.
  30114. Usually this means the macro was only invoked conditionally." >&2;}
  30115.    { (exit 1); exit 1; }; }
  30116. fi
  30117. if test -z "${dvd_plugin_TRUE}" && test -z "${dvd_plugin_FALSE}"; then
  30118.   { { echo "$as_me:$LINENO: error: conditional \"dvd_plugin\" was never defined.
  30119. Usually this means the macro was only invoked conditionally." >&5
  30120. echo "$as_me: error: conditional \"dvd_plugin\" was never defined.
  30121. Usually this means the macro was only invoked conditionally." >&2;}
  30122.    { (exit 1); exit 1; }; }
  30123. fi
  30124. if test -z "${dvd_builtin_TRUE}" && test -z "${dvd_builtin_FALSE}"; then
  30125.   { { echo "$as_me:$LINENO: error: conditional \"dvd_builtin\" was never defined.
  30126. Usually this means the macro was only invoked conditionally." >&5
  30127. echo "$as_me: error: conditional \"dvd_builtin\" was never defined.
  30128. Usually this means the macro was only invoked conditionally." >&2;}
  30129.    { (exit 1); exit 1; }; }
  30130. fi
  30131. if test -z "${dvdplay_plugin_TRUE}" && test -z "${dvdplay_plugin_FALSE}"; then
  30132.   { { echo "$as_me:$LINENO: error: conditional \"dvdplay_plugin\" was never defined.
  30133. Usually this means the macro was only invoked conditionally." >&5
  30134. echo "$as_me: error: conditional \"dvdplay_plugin\" was never defined.
  30135. Usually this means the macro was only invoked conditionally." >&2;}
  30136.    { (exit 1); exit 1; }; }
  30137. fi
  30138. if test -z "${dvdplay_builtin_TRUE}" && test -z "${dvdplay_builtin_FALSE}"; then
  30139.   { { echo "$as_me:$LINENO: error: conditional \"dvdplay_builtin\" was never defined.
  30140. Usually this means the macro was only invoked conditionally." >&5
  30141. echo "$as_me: error: conditional \"dvdplay_builtin\" was never defined.
  30142. Usually this means the macro was only invoked conditionally." >&2;}
  30143.    { (exit 1); exit 1; }; }
  30144. fi
  30145. if test -z "${dvdread_plugin_TRUE}" && test -z "${dvdread_plugin_FALSE}"; then
  30146.   { { echo "$as_me:$LINENO: error: conditional \"dvdread_plugin\" was never defined.
  30147. Usually this means the macro was only invoked conditionally." >&5
  30148. echo "$as_me: error: conditional \"dvdread_plugin\" was never defined.
  30149. Usually this means the macro was only invoked conditionally." >&2;}
  30150.    { (exit 1); exit 1; }; }
  30151. fi
  30152. if test -z "${dvdread_builtin_TRUE}" && test -z "${dvdread_builtin_FALSE}"; then
  30153.   { { echo "$as_me:$LINENO: error: conditional \"dvdread_builtin\" was never defined.
  30154. Usually this means the macro was only invoked conditionally." >&5
  30155. echo "$as_me: error: conditional \"dvdread_builtin\" was never defined.
  30156. Usually this means the macro was only invoked conditionally." >&2;}
  30157.    { (exit 1); exit 1; }; }
  30158. fi
  30159. if test -z "${access_mms_plugin_TRUE}" && test -z "${access_mms_plugin_FALSE}"; then
  30160.   { { echo "$as_me:$LINENO: error: conditional \"access_mms_plugin\" was never defined.
  30161. Usually this means the macro was only invoked conditionally." >&5
  30162. echo "$as_me: error: conditional \"access_mms_plugin\" was never defined.
  30163. Usually this means the macro was only invoked conditionally." >&2;}
  30164.    { (exit 1); exit 1; }; }
  30165. fi
  30166. if test -z "${access_mms_builtin_TRUE}" && test -z "${access_mms_builtin_FALSE}"; then
  30167.   { { echo "$as_me:$LINENO: error: conditional \"access_mms_builtin\" was never defined.
  30168. Usually this means the macro was only invoked conditionally." >&5
  30169. echo "$as_me: error: conditional \"access_mms_builtin\" was never defined.
  30170. Usually this means the macro was only invoked conditionally." >&2;}
  30171.    { (exit 1); exit 1; }; }
  30172. fi
  30173. if test -z "${satellite_plugin_TRUE}" && test -z "${satellite_plugin_FALSE}"; then
  30174.   { { echo "$as_me:$LINENO: error: conditional \"satellite_plugin\" was never defined.
  30175. Usually this means the macro was only invoked conditionally." >&5
  30176. echo "$as_me: error: conditional \"satellite_plugin\" was never defined.
  30177. Usually this means the macro was only invoked conditionally." >&2;}
  30178.    { (exit 1); exit 1; }; }
  30179. fi
  30180. if test -z "${satellite_builtin_TRUE}" && test -z "${satellite_builtin_FALSE}"; then
  30181.   { { echo "$as_me:$LINENO: error: conditional \"satellite_builtin\" was never defined.
  30182. Usually this means the macro was only invoked conditionally." >&5
  30183. echo "$as_me: error: conditional \"satellite_builtin\" was never defined.
  30184. Usually this means the macro was only invoked conditionally." >&2;}
  30185.    { (exit 1); exit 1; }; }
  30186. fi
  30187. if test -z "${v4l_plugin_TRUE}" && test -z "${v4l_plugin_FALSE}"; then
  30188.   { { echo "$as_me:$LINENO: error: conditional \"v4l_plugin\" was never defined.
  30189. Usually this means the macro was only invoked conditionally." >&5
  30190. echo "$as_me: error: conditional \"v4l_plugin\" was never defined.
  30191. Usually this means the macro was only invoked conditionally." >&2;}
  30192.    { (exit 1); exit 1; }; }
  30193. fi
  30194. if test -z "${v4l_builtin_TRUE}" && test -z "${v4l_builtin_FALSE}"; then
  30195.   { { echo "$as_me:$LINENO: error: conditional \"v4l_builtin\" was never defined.
  30196. Usually this means the macro was only invoked conditionally." >&5
  30197. echo "$as_me: error: conditional \"v4l_builtin\" was never defined.
  30198. Usually this means the macro was only invoked conditionally." >&2;}
  30199.    { (exit 1); exit 1; }; }
  30200. fi
  30201. if test -z "${vcd_plugin_TRUE}" && test -z "${vcd_plugin_FALSE}"; then
  30202.   { { echo "$as_me:$LINENO: error: conditional \"vcd_plugin\" was never defined.
  30203. Usually this means the macro was only invoked conditionally." >&5
  30204. echo "$as_me: error: conditional \"vcd_plugin\" was never defined.
  30205. Usually this means the macro was only invoked conditionally." >&2;}
  30206.    { (exit 1); exit 1; }; }
  30207. fi
  30208. if test -z "${vcd_builtin_TRUE}" && test -z "${vcd_builtin_FALSE}"; then
  30209.   { { echo "$as_me:$LINENO: error: conditional \"vcd_builtin\" was never defined.
  30210. Usually this means the macro was only invoked conditionally." >&5
  30211. echo "$as_me: error: conditional \"vcd_builtin\" was never defined.
  30212. Usually this means the macro was only invoked conditionally." >&2;}
  30213.    { (exit 1); exit 1; }; }
  30214. fi
  30215. if test -z "${access_output_dummy_plugin_TRUE}" && test -z "${access_output_dummy_plugin_FALSE}"; then
  30216.   { { echo "$as_me:$LINENO: error: conditional \"access_output_dummy_plugin\" was never defined.
  30217. Usually this means the macro was only invoked conditionally." >&5
  30218. echo "$as_me: error: conditional \"access_output_dummy_plugin\" was never defined.
  30219. Usually this means the macro was only invoked conditionally." >&2;}
  30220.    { (exit 1); exit 1; }; }
  30221. fi
  30222. if test -z "${access_output_dummy_builtin_TRUE}" && test -z "${access_output_dummy_builtin_FALSE}"; then
  30223.   { { echo "$as_me:$LINENO: error: conditional \"access_output_dummy_builtin\" was never defined.
  30224. Usually this means the macro was only invoked conditionally." >&5
  30225. echo "$as_me: error: conditional \"access_output_dummy_builtin\" was never defined.
  30226. Usually this means the macro was only invoked conditionally." >&2;}
  30227.    { (exit 1); exit 1; }; }
  30228. fi
  30229. if test -z "${access_output_file_plugin_TRUE}" && test -z "${access_output_file_plugin_FALSE}"; then
  30230.   { { echo "$as_me:$LINENO: error: conditional \"access_output_file_plugin\" was never defined.
  30231. Usually this means the macro was only invoked conditionally." >&5
  30232. echo "$as_me: error: conditional \"access_output_file_plugin\" was never defined.
  30233. Usually this means the macro was only invoked conditionally." >&2;}
  30234.    { (exit 1); exit 1; }; }
  30235. fi
  30236. if test -z "${access_output_file_builtin_TRUE}" && test -z "${access_output_file_builtin_FALSE}"; then
  30237.   { { echo "$as_me:$LINENO: error: conditional \"access_output_file_builtin\" was never defined.
  30238. Usually this means the macro was only invoked conditionally." >&5
  30239. echo "$as_me: error: conditional \"access_output_file_builtin\" was never defined.
  30240. Usually this means the macro was only invoked conditionally." >&2;}
  30241.    { (exit 1); exit 1; }; }
  30242. fi
  30243. if test -z "${access_output_udp_plugin_TRUE}" && test -z "${access_output_udp_plugin_FALSE}"; then
  30244.   { { echo "$as_me:$LINENO: error: conditional \"access_output_udp_plugin\" was never defined.
  30245. Usually this means the macro was only invoked conditionally." >&5
  30246. echo "$as_me: error: conditional \"access_output_udp_plugin\" was never defined.
  30247. Usually this means the macro was only invoked conditionally." >&2;}
  30248.    { (exit 1); exit 1; }; }
  30249. fi
  30250. if test -z "${access_output_udp_builtin_TRUE}" && test -z "${access_output_udp_builtin_FALSE}"; then
  30251.   { { echo "$as_me:$LINENO: error: conditional \"access_output_udp_builtin\" was never defined.
  30252. Usually this means the macro was only invoked conditionally." >&5
  30253. echo "$as_me: error: conditional \"access_output_udp_builtin\" was never defined.
  30254. Usually this means the macro was only invoked conditionally." >&2;}
  30255.    { (exit 1); exit 1; }; }
  30256. fi
  30257. if test -z "${access_output_http_plugin_TRUE}" && test -z "${access_output_http_plugin_FALSE}"; then
  30258.   { { echo "$as_me:$LINENO: error: conditional \"access_output_http_plugin\" was never defined.
  30259. Usually this means the macro was only invoked conditionally." >&5
  30260. echo "$as_me: error: conditional \"access_output_http_plugin\" was never defined.
  30261. Usually this means the macro was only invoked conditionally." >&2;}
  30262.    { (exit 1); exit 1; }; }
  30263. fi
  30264. if test -z "${access_output_http_builtin_TRUE}" && test -z "${access_output_http_builtin_FALSE}"; then
  30265.   { { echo "$as_me:$LINENO: error: conditional \"access_output_http_builtin\" was never defined.
  30266. Usually this means the macro was only invoked conditionally." >&5
  30267. echo "$as_me: error: conditional \"access_output_http_builtin\" was never defined.
  30268. Usually this means the macro was only invoked conditionally." >&2;}
  30269.    { (exit 1); exit 1; }; }
  30270. fi
  30271. if test -z "${trivial_channel_mixer_plugin_TRUE}" && test -z "${trivial_channel_mixer_plugin_FALSE}"; then
  30272.   { { echo "$as_me:$LINENO: error: conditional \"trivial_channel_mixer_plugin\" was never defined.
  30273. Usually this means the macro was only invoked conditionally." >&5
  30274. echo "$as_me: error: conditional \"trivial_channel_mixer_plugin\" was never defined.
  30275. Usually this means the macro was only invoked conditionally." >&2;}
  30276.    { (exit 1); exit 1; }; }
  30277. fi
  30278. if test -z "${trivial_channel_mixer_builtin_TRUE}" && test -z "${trivial_channel_mixer_builtin_FALSE}"; then
  30279.   { { echo "$as_me:$LINENO: error: conditional \"trivial_channel_mixer_builtin\" was never defined.
  30280. Usually this means the macro was only invoked conditionally." >&5
  30281. echo "$as_me: error: conditional \"trivial_channel_mixer_builtin\" was never defined.
  30282. Usually this means the macro was only invoked conditionally." >&2;}
  30283.    { (exit 1); exit 1; }; }
  30284. fi
  30285. if test -z "${headphone_channel_mixer_plugin_TRUE}" && test -z "${headphone_channel_mixer_plugin_FALSE}"; then
  30286.   { { echo "$as_me:$LINENO: error: conditional \"headphone_channel_mixer_plugin\" was never defined.
  30287. Usually this means the macro was only invoked conditionally." >&5
  30288. echo "$as_me: error: conditional \"headphone_channel_mixer_plugin\" was never defined.
  30289. Usually this means the macro was only invoked conditionally." >&2;}
  30290.    { (exit 1); exit 1; }; }
  30291. fi
  30292. if test -z "${headphone_channel_mixer_builtin_TRUE}" && test -z "${headphone_channel_mixer_builtin_FALSE}"; then
  30293.   { { echo "$as_me:$LINENO: error: conditional \"headphone_channel_mixer_builtin\" was never defined.
  30294. Usually this means the macro was only invoked conditionally." >&5
  30295. echo "$as_me: error: conditional \"headphone_channel_mixer_builtin\" was never defined.
  30296. Usually this means the macro was only invoked conditionally." >&2;}
  30297.    { (exit 1); exit 1; }; }
  30298. fi
  30299. if test -z "${float32tos16_plugin_TRUE}" && test -z "${float32tos16_plugin_FALSE}"; then
  30300.   { { echo "$as_me:$LINENO: error: conditional \"float32tos16_plugin\" was never defined.
  30301. Usually this means the macro was only invoked conditionally." >&5
  30302. echo "$as_me: error: conditional \"float32tos16_plugin\" was never defined.
  30303. Usually this means the macro was only invoked conditionally." >&2;}
  30304.    { (exit 1); exit 1; }; }
  30305. fi
  30306. if test -z "${float32tos16_builtin_TRUE}" && test -z "${float32tos16_builtin_FALSE}"; then
  30307.   { { echo "$as_me:$LINENO: error: conditional \"float32tos16_builtin\" was never defined.
  30308. Usually this means the macro was only invoked conditionally." >&5
  30309. echo "$as_me: error: conditional \"float32tos16_builtin\" was never defined.
  30310. Usually this means the macro was only invoked conditionally." >&2;}
  30311.    { (exit 1); exit 1; }; }
  30312. fi
  30313. if test -z "${float32tos8_plugin_TRUE}" && test -z "${float32tos8_plugin_FALSE}"; then
  30314.   { { echo "$as_me:$LINENO: error: conditional \"float32tos8_plugin\" was never defined.
  30315. Usually this means the macro was only invoked conditionally." >&5
  30316. echo "$as_me: error: conditional \"float32tos8_plugin\" was never defined.
  30317. Usually this means the macro was only invoked conditionally." >&2;}
  30318.    { (exit 1); exit 1; }; }
  30319. fi
  30320. if test -z "${float32tos8_builtin_TRUE}" && test -z "${float32tos8_builtin_FALSE}"; then
  30321.   { { echo "$as_me:$LINENO: error: conditional \"float32tos8_builtin\" was never defined.
  30322. Usually this means the macro was only invoked conditionally." >&5
  30323. echo "$as_me: error: conditional \"float32tos8_builtin\" was never defined.
  30324. Usually this means the macro was only invoked conditionally." >&2;}
  30325.    { (exit 1); exit 1; }; }
  30326. fi
  30327. if test -z "${float32tou16_plugin_TRUE}" && test -z "${float32tou16_plugin_FALSE}"; then
  30328.   { { echo "$as_me:$LINENO: error: conditional \"float32tou16_plugin\" was never defined.
  30329. Usually this means the macro was only invoked conditionally." >&5
  30330. echo "$as_me: error: conditional \"float32tou16_plugin\" was never defined.
  30331. Usually this means the macro was only invoked conditionally." >&2;}
  30332.    { (exit 1); exit 1; }; }
  30333. fi
  30334. if test -z "${float32tou16_builtin_TRUE}" && test -z "${float32tou16_builtin_FALSE}"; then
  30335.   { { echo "$as_me:$LINENO: error: conditional \"float32tou16_builtin\" was never defined.
  30336. Usually this means the macro was only invoked conditionally." >&5
  30337. echo "$as_me: error: conditional \"float32tou16_builtin\" was never defined.
  30338. Usually this means the macro was only invoked conditionally." >&2;}
  30339.    { (exit 1); exit 1; }; }
  30340. fi
  30341. if test -z "${float32tou8_plugin_TRUE}" && test -z "${float32tou8_plugin_FALSE}"; then
  30342.   { { echo "$as_me:$LINENO: error: conditional \"float32tou8_plugin\" was never defined.
  30343. Usually this means the macro was only invoked conditionally." >&5
  30344. echo "$as_me: error: conditional \"float32tou8_plugin\" was never defined.
  30345. Usually this means the macro was only invoked conditionally." >&2;}
  30346.    { (exit 1); exit 1; }; }
  30347. fi
  30348. if test -z "${float32tou8_builtin_TRUE}" && test -z "${float32tou8_builtin_FALSE}"; then
  30349.   { { echo "$as_me:$LINENO: error: conditional \"float32tou8_builtin\" was never defined.
  30350. Usually this means the macro was only invoked conditionally." >&5
  30351. echo "$as_me: error: conditional \"float32tou8_builtin\" was never defined.
  30352. Usually this means the macro was only invoked conditionally." >&2;}
  30353.    { (exit 1); exit 1; }; }
  30354. fi
  30355. if test -z "${a52tospdif_plugin_TRUE}" && test -z "${a52tospdif_plugin_FALSE}"; then
  30356.   { { echo "$as_me:$LINENO: error: conditional \"a52tospdif_plugin\" was never defined.
  30357. Usually this means the macro was only invoked conditionally." >&5
  30358. echo "$as_me: error: conditional \"a52tospdif_plugin\" was never defined.
  30359. Usually this means the macro was only invoked conditionally." >&2;}
  30360.    { (exit 1); exit 1; }; }
  30361. fi
  30362. if test -z "${a52tospdif_builtin_TRUE}" && test -z "${a52tospdif_builtin_FALSE}"; then
  30363.   { { echo "$as_me:$LINENO: error: conditional \"a52tospdif_builtin\" was never defined.
  30364. Usually this means the macro was only invoked conditionally." >&5
  30365. echo "$as_me: error: conditional \"a52tospdif_builtin\" was never defined.
  30366. Usually this means the macro was only invoked conditionally." >&2;}
  30367.    { (exit 1); exit 1; }; }
  30368. fi
  30369. if test -z "${a52tofloat32_plugin_TRUE}" && test -z "${a52tofloat32_plugin_FALSE}"; then
  30370.   { { echo "$as_me:$LINENO: error: conditional \"a52tofloat32_plugin\" was never defined.
  30371. Usually this means the macro was only invoked conditionally." >&5
  30372. echo "$as_me: error: conditional \"a52tofloat32_plugin\" was never defined.
  30373. Usually this means the macro was only invoked conditionally." >&2;}
  30374.    { (exit 1); exit 1; }; }
  30375. fi
  30376. if test -z "${a52tofloat32_builtin_TRUE}" && test -z "${a52tofloat32_builtin_FALSE}"; then
  30377.   { { echo "$as_me:$LINENO: error: conditional \"a52tofloat32_builtin\" was never defined.
  30378. Usually this means the macro was only invoked conditionally." >&5
  30379. echo "$as_me: error: conditional \"a52tofloat32_builtin\" was never defined.
  30380. Usually this means the macro was only invoked conditionally." >&2;}
  30381.    { (exit 1); exit 1; }; }
  30382. fi
  30383. if test -z "${dtstospdif_plugin_TRUE}" && test -z "${dtstospdif_plugin_FALSE}"; then
  30384.   { { echo "$as_me:$LINENO: error: conditional \"dtstospdif_plugin\" was never defined.
  30385. Usually this means the macro was only invoked conditionally." >&5
  30386. echo "$as_me: error: conditional \"dtstospdif_plugin\" was never defined.
  30387. Usually this means the macro was only invoked conditionally." >&2;}
  30388.    { (exit 1); exit 1; }; }
  30389. fi
  30390. if test -z "${dtstospdif_builtin_TRUE}" && test -z "${dtstospdif_builtin_FALSE}"; then
  30391.   { { echo "$as_me:$LINENO: error: conditional \"dtstospdif_builtin\" was never defined.
  30392. Usually this means the macro was only invoked conditionally." >&5
  30393. echo "$as_me: error: conditional \"dtstospdif_builtin\" was never defined.
  30394. Usually this means the macro was only invoked conditionally." >&2;}
  30395.    { (exit 1); exit 1; }; }
  30396. fi
  30397. if test -z "${fixed32tos16_plugin_TRUE}" && test -z "${fixed32tos16_plugin_FALSE}"; then
  30398.   { { echo "$as_me:$LINENO: error: conditional \"fixed32tos16_plugin\" was never defined.
  30399. Usually this means the macro was only invoked conditionally." >&5
  30400. echo "$as_me: error: conditional \"fixed32tos16_plugin\" was never defined.
  30401. Usually this means the macro was only invoked conditionally." >&2;}
  30402.    { (exit 1); exit 1; }; }
  30403. fi
  30404. if test -z "${fixed32tos16_builtin_TRUE}" && test -z "${fixed32tos16_builtin_FALSE}"; then
  30405.   { { echo "$as_me:$LINENO: error: conditional \"fixed32tos16_builtin\" was never defined.
  30406. Usually this means the macro was only invoked conditionally." >&5
  30407. echo "$as_me: error: conditional \"fixed32tos16_builtin\" was never defined.
  30408. Usually this means the macro was only invoked conditionally." >&2;}
  30409.    { (exit 1); exit 1; }; }
  30410. fi
  30411. if test -z "${s16tofixed32_plugin_TRUE}" && test -z "${s16tofixed32_plugin_FALSE}"; then
  30412.   { { echo "$as_me:$LINENO: error: conditional \"s16tofixed32_plugin\" was never defined.
  30413. Usually this means the macro was only invoked conditionally." >&5
  30414. echo "$as_me: error: conditional \"s16tofixed32_plugin\" was never defined.
  30415. Usually this means the macro was only invoked conditionally." >&2;}
  30416.    { (exit 1); exit 1; }; }
  30417. fi
  30418. if test -z "${s16tofixed32_builtin_TRUE}" && test -z "${s16tofixed32_builtin_FALSE}"; then
  30419.   { { echo "$as_me:$LINENO: error: conditional \"s16tofixed32_builtin\" was never defined.
  30420. Usually this means the macro was only invoked conditionally." >&5
  30421. echo "$as_me: error: conditional \"s16tofixed32_builtin\" was never defined.
  30422. Usually this means the macro was only invoked conditionally." >&2;}
  30423.    { (exit 1); exit 1; }; }
  30424. fi
  30425. if test -z "${fixed32tofloat32_plugin_TRUE}" && test -z "${fixed32tofloat32_plugin_FALSE}"; then
  30426.   { { echo "$as_me:$LINENO: error: conditional \"fixed32tofloat32_plugin\" was never defined.
  30427. Usually this means the macro was only invoked conditionally." >&5
  30428. echo "$as_me: error: conditional \"fixed32tofloat32_plugin\" was never defined.
  30429. Usually this means the macro was only invoked conditionally." >&2;}
  30430.    { (exit 1); exit 1; }; }
  30431. fi
  30432. if test -z "${fixed32tofloat32_builtin_TRUE}" && test -z "${fixed32tofloat32_builtin_FALSE}"; then
  30433.   { { echo "$as_me:$LINENO: error: conditional \"fixed32tofloat32_builtin\" was never defined.
  30434. Usually this means the macro was only invoked conditionally." >&5
  30435. echo "$as_me: error: conditional \"fixed32tofloat32_builtin\" was never defined.
  30436. Usually this means the macro was only invoked conditionally." >&2;}
  30437.    { (exit 1); exit 1; }; }
  30438. fi
  30439. if test -z "${s16tofloat32_plugin_TRUE}" && test -z "${s16tofloat32_plugin_FALSE}"; then
  30440.   { { echo "$as_me:$LINENO: error: conditional \"s16tofloat32_plugin\" was never defined.
  30441. Usually this means the macro was only invoked conditionally." >&5
  30442. echo "$as_me: error: conditional \"s16tofloat32_plugin\" was never defined.
  30443. Usually this means the macro was only invoked conditionally." >&2;}
  30444.    { (exit 1); exit 1; }; }
  30445. fi
  30446. if test -z "${s16tofloat32_builtin_TRUE}" && test -z "${s16tofloat32_builtin_FALSE}"; then
  30447.   { { echo "$as_me:$LINENO: error: conditional \"s16tofloat32_builtin\" was never defined.
  30448. Usually this means the macro was only invoked conditionally." >&5
  30449. echo "$as_me: error: conditional \"s16tofloat32_builtin\" was never defined.
  30450. Usually this means the macro was only invoked conditionally." >&2;}
  30451.    { (exit 1); exit 1; }; }
  30452. fi
  30453. if test -z "${s16tofloat32swab_plugin_TRUE}" && test -z "${s16tofloat32swab_plugin_FALSE}"; then
  30454.   { { echo "$as_me:$LINENO: error: conditional \"s16tofloat32swab_plugin\" was never defined.
  30455. Usually this means the macro was only invoked conditionally." >&5
  30456. echo "$as_me: error: conditional \"s16tofloat32swab_plugin\" was never defined.
  30457. Usually this means the macro was only invoked conditionally." >&2;}
  30458.    { (exit 1); exit 1; }; }
  30459. fi
  30460. if test -z "${s16tofloat32swab_builtin_TRUE}" && test -z "${s16tofloat32swab_builtin_FALSE}"; then
  30461.   { { echo "$as_me:$LINENO: error: conditional \"s16tofloat32swab_builtin\" was never defined.
  30462. Usually this means the macro was only invoked conditionally." >&5
  30463. echo "$as_me: error: conditional \"s16tofloat32swab_builtin\" was never defined.
  30464. Usually this means the macro was only invoked conditionally." >&2;}
  30465.    { (exit 1); exit 1; }; }
  30466. fi
  30467. if test -z "${s8tofloat32_plugin_TRUE}" && test -z "${s8tofloat32_plugin_FALSE}"; then
  30468.   { { echo "$as_me:$LINENO: error: conditional \"s8tofloat32_plugin\" was never defined.
  30469. Usually this means the macro was only invoked conditionally." >&5
  30470. echo "$as_me: error: conditional \"s8tofloat32_plugin\" was never defined.
  30471. Usually this means the macro was only invoked conditionally." >&2;}
  30472.    { (exit 1); exit 1; }; }
  30473. fi
  30474. if test -z "${s8tofloat32_builtin_TRUE}" && test -z "${s8tofloat32_builtin_FALSE}"; then
  30475.   { { echo "$as_me:$LINENO: error: conditional \"s8tofloat32_builtin\" was never defined.
  30476. Usually this means the macro was only invoked conditionally." >&5
  30477. echo "$as_me: error: conditional \"s8tofloat32_builtin\" was never defined.
  30478. Usually this means the macro was only invoked conditionally." >&2;}
  30479.    { (exit 1); exit 1; }; }
  30480. fi
  30481. if test -z "${u8tofixed32_plugin_TRUE}" && test -z "${u8tofixed32_plugin_FALSE}"; then
  30482.   { { echo "$as_me:$LINENO: error: conditional \"u8tofixed32_plugin\" was never defined.
  30483. Usually this means the macro was only invoked conditionally." >&5
  30484. echo "$as_me: error: conditional \"u8tofixed32_plugin\" was never defined.
  30485. Usually this means the macro was only invoked conditionally." >&2;}
  30486.    { (exit 1); exit 1; }; }
  30487. fi
  30488. if test -z "${u8tofixed32_builtin_TRUE}" && test -z "${u8tofixed32_builtin_FALSE}"; then
  30489.   { { echo "$as_me:$LINENO: error: conditional \"u8tofixed32_builtin\" was never defined.
  30490. Usually this means the macro was only invoked conditionally." >&5
  30491. echo "$as_me: error: conditional \"u8tofixed32_builtin\" was never defined.
  30492. Usually this means the macro was only invoked conditionally." >&2;}
  30493.    { (exit 1); exit 1; }; }
  30494. fi
  30495. if test -z "${u8tofloat32_plugin_TRUE}" && test -z "${u8tofloat32_plugin_FALSE}"; then
  30496.   { { echo "$as_me:$LINENO: error: conditional \"u8tofloat32_plugin\" was never defined.
  30497. Usually this means the macro was only invoked conditionally." >&5
  30498. echo "$as_me: error: conditional \"u8tofloat32_plugin\" was never defined.
  30499. Usually this means the macro was only invoked conditionally." >&2;}
  30500.    { (exit 1); exit 1; }; }
  30501. fi
  30502. if test -z "${u8tofloat32_builtin_TRUE}" && test -z "${u8tofloat32_builtin_FALSE}"; then
  30503.   { { echo "$as_me:$LINENO: error: conditional \"u8tofloat32_builtin\" was never defined.
  30504. Usually this means the macro was only invoked conditionally." >&5
  30505. echo "$as_me: error: conditional \"u8tofloat32_builtin\" was never defined.
  30506. Usually this means the macro was only invoked conditionally." >&2;}
  30507.    { (exit 1); exit 1; }; }
  30508. fi
  30509. if test -z "${mpgatofixed32_plugin_TRUE}" && test -z "${mpgatofixed32_plugin_FALSE}"; then
  30510.   { { echo "$as_me:$LINENO: error: conditional \"mpgatofixed32_plugin\" was never defined.
  30511. Usually this means the macro was only invoked conditionally." >&5
  30512. echo "$as_me: error: conditional \"mpgatofixed32_plugin\" was never defined.
  30513. Usually this means the macro was only invoked conditionally." >&2;}
  30514.    { (exit 1); exit 1; }; }
  30515. fi
  30516. if test -z "${mpgatofixed32_builtin_TRUE}" && test -z "${mpgatofixed32_builtin_FALSE}"; then
  30517.   { { echo "$as_me:$LINENO: error: conditional \"mpgatofixed32_builtin\" was never defined.
  30518. Usually this means the macro was only invoked conditionally." >&5
  30519. echo "$as_me: error: conditional \"mpgatofixed32_builtin\" was never defined.
  30520. Usually this means the macro was only invoked conditionally." >&2;}
  30521.    { (exit 1); exit 1; }; }
  30522. fi
  30523. if test -z "${trivial_resampler_plugin_TRUE}" && test -z "${trivial_resampler_plugin_FALSE}"; then
  30524.   { { echo "$as_me:$LINENO: error: conditional \"trivial_resampler_plugin\" was never defined.
  30525. Usually this means the macro was only invoked conditionally." >&5
  30526. echo "$as_me: error: conditional \"trivial_resampler_plugin\" was never defined.
  30527. Usually this means the macro was only invoked conditionally." >&2;}
  30528.    { (exit 1); exit 1; }; }
  30529. fi
  30530. if test -z "${trivial_resampler_builtin_TRUE}" && test -z "${trivial_resampler_builtin_FALSE}"; then
  30531.   { { echo "$as_me:$LINENO: error: conditional \"trivial_resampler_builtin\" was never defined.
  30532. Usually this means the macro was only invoked conditionally." >&5
  30533. echo "$as_me: error: conditional \"trivial_resampler_builtin\" was never defined.
  30534. Usually this means the macro was only invoked conditionally." >&2;}
  30535.    { (exit 1); exit 1; }; }
  30536. fi
  30537. if test -z "${ugly_resampler_plugin_TRUE}" && test -z "${ugly_resampler_plugin_FALSE}"; then
  30538.   { { echo "$as_me:$LINENO: error: conditional \"ugly_resampler_plugin\" was never defined.
  30539. Usually this means the macro was only invoked conditionally." >&5
  30540. echo "$as_me: error: conditional \"ugly_resampler_plugin\" was never defined.
  30541. Usually this means the macro was only invoked conditionally." >&2;}
  30542.    { (exit 1); exit 1; }; }
  30543. fi
  30544. if test -z "${ugly_resampler_builtin_TRUE}" && test -z "${ugly_resampler_builtin_FALSE}"; then
  30545.   { { echo "$as_me:$LINENO: error: conditional \"ugly_resampler_builtin\" was never defined.
  30546. Usually this means the macro was only invoked conditionally." >&5
  30547. echo "$as_me: error: conditional \"ugly_resampler_builtin\" was never defined.
  30548. Usually this means the macro was only invoked conditionally." >&2;}
  30549.    { (exit 1); exit 1; }; }
  30550. fi
  30551. if test -z "${linear_resampler_plugin_TRUE}" && test -z "${linear_resampler_plugin_FALSE}"; then
  30552.   { { echo "$as_me:$LINENO: error: conditional \"linear_resampler_plugin\" was never defined.
  30553. Usually this means the macro was only invoked conditionally." >&5
  30554. echo "$as_me: error: conditional \"linear_resampler_plugin\" was never defined.
  30555. Usually this means the macro was only invoked conditionally." >&2;}
  30556.    { (exit 1); exit 1; }; }
  30557. fi
  30558. if test -z "${linear_resampler_builtin_TRUE}" && test -z "${linear_resampler_builtin_FALSE}"; then
  30559.   { { echo "$as_me:$LINENO: error: conditional \"linear_resampler_builtin\" was never defined.
  30560. Usually this means the macro was only invoked conditionally." >&5
  30561. echo "$as_me: error: conditional \"linear_resampler_builtin\" was never defined.
  30562. Usually this means the macro was only invoked conditionally." >&2;}
  30563.    { (exit 1); exit 1; }; }
  30564. fi
  30565. if test -z "${bandlimited_resampler_plugin_TRUE}" && test -z "${bandlimited_resampler_plugin_FALSE}"; then
  30566.   { { echo "$as_me:$LINENO: error: conditional \"bandlimited_resampler_plugin\" was never defined.
  30567. Usually this means the macro was only invoked conditionally." >&5
  30568. echo "$as_me: error: conditional \"bandlimited_resampler_plugin\" was never defined.
  30569. Usually this means the macro was only invoked conditionally." >&2;}
  30570.    { (exit 1); exit 1; }; }
  30571. fi
  30572. if test -z "${bandlimited_resampler_builtin_TRUE}" && test -z "${bandlimited_resampler_builtin_FALSE}"; then
  30573.   { { echo "$as_me:$LINENO: error: conditional \"bandlimited_resampler_builtin\" was never defined.
  30574. Usually this means the macro was only invoked conditionally." >&5
  30575. echo "$as_me: error: conditional \"bandlimited_resampler_builtin\" was never defined.
  30576. Usually this means the macro was only invoked conditionally." >&2;}
  30577.    { (exit 1); exit 1; }; }
  30578. fi
  30579. if test -z "${coreaudio_resampler_plugin_TRUE}" && test -z "${coreaudio_resampler_plugin_FALSE}"; then
  30580.   { { echo "$as_me:$LINENO: error: conditional \"coreaudio_resampler_plugin\" was never defined.
  30581. Usually this means the macro was only invoked conditionally." >&5
  30582. echo "$as_me: error: conditional \"coreaudio_resampler_plugin\" was never defined.
  30583. Usually this means the macro was only invoked conditionally." >&2;}
  30584.    { (exit 1); exit 1; }; }
  30585. fi
  30586. if test -z "${coreaudio_resampler_builtin_TRUE}" && test -z "${coreaudio_resampler_builtin_FALSE}"; then
  30587.   { { echo "$as_me:$LINENO: error: conditional \"coreaudio_resampler_builtin\" was never defined.
  30588. Usually this means the macro was only invoked conditionally." >&5
  30589. echo "$as_me: error: conditional \"coreaudio_resampler_builtin\" was never defined.
  30590. Usually this means the macro was only invoked conditionally." >&2;}
  30591.    { (exit 1); exit 1; }; }
  30592. fi
  30593. if test -z "${trivial_mixer_plugin_TRUE}" && test -z "${trivial_mixer_plugin_FALSE}"; then
  30594.   { { echo "$as_me:$LINENO: error: conditional \"trivial_mixer_plugin\" was never defined.
  30595. Usually this means the macro was only invoked conditionally." >&5
  30596. echo "$as_me: error: conditional \"trivial_mixer_plugin\" was never defined.
  30597. Usually this means the macro was only invoked conditionally." >&2;}
  30598.    { (exit 1); exit 1; }; }
  30599. fi
  30600. if test -z "${trivial_mixer_builtin_TRUE}" && test -z "${trivial_mixer_builtin_FALSE}"; then
  30601.   { { echo "$as_me:$LINENO: error: conditional \"trivial_mixer_builtin\" was never defined.
  30602. Usually this means the macro was only invoked conditionally." >&5
  30603. echo "$as_me: error: conditional \"trivial_mixer_builtin\" was never defined.
  30604. Usually this means the macro was only invoked conditionally." >&2;}
  30605.    { (exit 1); exit 1; }; }
  30606. fi
  30607. if test -z "${float32_mixer_plugin_TRUE}" && test -z "${float32_mixer_plugin_FALSE}"; then
  30608.   { { echo "$as_me:$LINENO: error: conditional \"float32_mixer_plugin\" was never defined.
  30609. Usually this means the macro was only invoked conditionally." >&5
  30610. echo "$as_me: error: conditional \"float32_mixer_plugin\" was never defined.
  30611. Usually this means the macro was only invoked conditionally." >&2;}
  30612.    { (exit 1); exit 1; }; }
  30613. fi
  30614. if test -z "${float32_mixer_builtin_TRUE}" && test -z "${float32_mixer_builtin_FALSE}"; then
  30615.   { { echo "$as_me:$LINENO: error: conditional \"float32_mixer_builtin\" was never defined.
  30616. Usually this means the macro was only invoked conditionally." >&5
  30617. echo "$as_me: error: conditional \"float32_mixer_builtin\" was never defined.
  30618. Usually this means the macro was only invoked conditionally." >&2;}
  30619.    { (exit 1); exit 1; }; }
  30620. fi
  30621. if test -z "${spdif_mixer_plugin_TRUE}" && test -z "${spdif_mixer_plugin_FALSE}"; then
  30622.   { { echo "$as_me:$LINENO: error: conditional \"spdif_mixer_plugin\" was never defined.
  30623. Usually this means the macro was only invoked conditionally." >&5
  30624. echo "$as_me: error: conditional \"spdif_mixer_plugin\" was never defined.
  30625. Usually this means the macro was only invoked conditionally." >&2;}
  30626.    { (exit 1); exit 1; }; }
  30627. fi
  30628. if test -z "${spdif_mixer_builtin_TRUE}" && test -z "${spdif_mixer_builtin_FALSE}"; then
  30629.   { { echo "$as_me:$LINENO: error: conditional \"spdif_mixer_builtin\" was never defined.
  30630. Usually this means the macro was only invoked conditionally." >&5
  30631. echo "$as_me: error: conditional \"spdif_mixer_builtin\" was never defined.
  30632. Usually this means the macro was only invoked conditionally." >&2;}
  30633.    { (exit 1); exit 1; }; }
  30634. fi
  30635. if test -z "${alsa_plugin_TRUE}" && test -z "${alsa_plugin_FALSE}"; then
  30636.   { { echo "$as_me:$LINENO: error: conditional \"alsa_plugin\" was never defined.
  30637. Usually this means the macro was only invoked conditionally." >&5
  30638. echo "$as_me: error: conditional \"alsa_plugin\" was never defined.
  30639. Usually this means the macro was only invoked conditionally." >&2;}
  30640.    { (exit 1); exit 1; }; }
  30641. fi
  30642. if test -z "${alsa_builtin_TRUE}" && test -z "${alsa_builtin_FALSE}"; then
  30643.   { { echo "$as_me:$LINENO: error: conditional \"alsa_builtin\" was never defined.
  30644. Usually this means the macro was only invoked conditionally." >&5
  30645. echo "$as_me: error: conditional \"alsa_builtin\" was never defined.
  30646. Usually this means the macro was only invoked conditionally." >&2;}
  30647.    { (exit 1); exit 1; }; }
  30648. fi
  30649. if test -z "${arts_plugin_TRUE}" && test -z "${arts_plugin_FALSE}"; then
  30650.   { { echo "$as_me:$LINENO: error: conditional \"arts_plugin\" was never defined.
  30651. Usually this means the macro was only invoked conditionally." >&5
  30652. echo "$as_me: error: conditional \"arts_plugin\" was never defined.
  30653. Usually this means the macro was only invoked conditionally." >&2;}
  30654.    { (exit 1); exit 1; }; }
  30655. fi
  30656. if test -z "${arts_builtin_TRUE}" && test -z "${arts_builtin_FALSE}"; then
  30657.   { { echo "$as_me:$LINENO: error: conditional \"arts_builtin\" was never defined.
  30658. Usually this means the macro was only invoked conditionally." >&5
  30659. echo "$as_me: error: conditional \"arts_builtin\" was never defined.
  30660. Usually this means the macro was only invoked conditionally." >&2;}
  30661.    { (exit 1); exit 1; }; }
  30662. fi
  30663. if test -z "${coreaudio_plugin_TRUE}" && test -z "${coreaudio_plugin_FALSE}"; then
  30664.   { { echo "$as_me:$LINENO: error: conditional \"coreaudio_plugin\" was never defined.
  30665. Usually this means the macro was only invoked conditionally." >&5
  30666. echo "$as_me: error: conditional \"coreaudio_plugin\" was never defined.
  30667. Usually this means the macro was only invoked conditionally." >&2;}
  30668.    { (exit 1); exit 1; }; }
  30669. fi
  30670. if test -z "${coreaudio_builtin_TRUE}" && test -z "${coreaudio_builtin_FALSE}"; then
  30671.   { { echo "$as_me:$LINENO: error: conditional \"coreaudio_builtin\" was never defined.
  30672. Usually this means the macro was only invoked conditionally." >&5
  30673. echo "$as_me: error: conditional \"coreaudio_builtin\" was never defined.
  30674. Usually this means the macro was only invoked conditionally." >&2;}
  30675.    { (exit 1); exit 1; }; }
  30676. fi
  30677. if test -z "${aout_directx_plugin_TRUE}" && test -z "${aout_directx_plugin_FALSE}"; then
  30678.   { { echo "$as_me:$LINENO: error: conditional \"aout_directx_plugin\" was never defined.
  30679. Usually this means the macro was only invoked conditionally." >&5
  30680. echo "$as_me: error: conditional \"aout_directx_plugin\" was never defined.
  30681. Usually this means the macro was only invoked conditionally." >&2;}
  30682.    { (exit 1); exit 1; }; }
  30683. fi
  30684. if test -z "${aout_directx_builtin_TRUE}" && test -z "${aout_directx_builtin_FALSE}"; then
  30685.   { { echo "$as_me:$LINENO: error: conditional \"aout_directx_builtin\" was never defined.
  30686. Usually this means the macro was only invoked conditionally." >&5
  30687. echo "$as_me: error: conditional \"aout_directx_builtin\" was never defined.
  30688. Usually this means the macro was only invoked conditionally." >&2;}
  30689.    { (exit 1); exit 1; }; }
  30690. fi
  30691. if test -z "${esd_plugin_TRUE}" && test -z "${esd_plugin_FALSE}"; then
  30692.   { { echo "$as_me:$LINENO: error: conditional \"esd_plugin\" was never defined.
  30693. Usually this means the macro was only invoked conditionally." >&5
  30694. echo "$as_me: error: conditional \"esd_plugin\" was never defined.
  30695. Usually this means the macro was only invoked conditionally." >&2;}
  30696.    { (exit 1); exit 1; }; }
  30697. fi
  30698. if test -z "${esd_builtin_TRUE}" && test -z "${esd_builtin_FALSE}"; then
  30699.   { { echo "$as_me:$LINENO: error: conditional \"esd_builtin\" was never defined.
  30700. Usually this means the macro was only invoked conditionally." >&5
  30701. echo "$as_me: error: conditional \"esd_builtin\" was never defined.
  30702. Usually this means the macro was only invoked conditionally." >&2;}
  30703.    { (exit 1); exit 1; }; }
  30704. fi
  30705. if test -z "${aout_file_plugin_TRUE}" && test -z "${aout_file_plugin_FALSE}"; then
  30706.   { { echo "$as_me:$LINENO: error: conditional \"aout_file_plugin\" was never defined.
  30707. Usually this means the macro was only invoked conditionally." >&5
  30708. echo "$as_me: error: conditional \"aout_file_plugin\" was never defined.
  30709. Usually this means the macro was only invoked conditionally." >&2;}
  30710.    { (exit 1); exit 1; }; }
  30711. fi
  30712. if test -z "${aout_file_builtin_TRUE}" && test -z "${aout_file_builtin_FALSE}"; then
  30713.   { { echo "$as_me:$LINENO: error: conditional \"aout_file_builtin\" was never defined.
  30714. Usually this means the macro was only invoked conditionally." >&5
  30715. echo "$as_me: error: conditional \"aout_file_builtin\" was never defined.
  30716. Usually this means the macro was only invoked conditionally." >&2;}
  30717.    { (exit 1); exit 1; }; }
  30718. fi
  30719. if test -z "${oss_plugin_TRUE}" && test -z "${oss_plugin_FALSE}"; then
  30720.   { { echo "$as_me:$LINENO: error: conditional \"oss_plugin\" was never defined.
  30721. Usually this means the macro was only invoked conditionally." >&5
  30722. echo "$as_me: error: conditional \"oss_plugin\" was never defined.
  30723. Usually this means the macro was only invoked conditionally." >&2;}
  30724.    { (exit 1); exit 1; }; }
  30725. fi
  30726. if test -z "${oss_builtin_TRUE}" && test -z "${oss_builtin_FALSE}"; then
  30727.   { { echo "$as_me:$LINENO: error: conditional \"oss_builtin\" was never defined.
  30728. Usually this means the macro was only invoked conditionally." >&5
  30729. echo "$as_me: error: conditional \"oss_builtin\" was never defined.
  30730. Usually this means the macro was only invoked conditionally." >&2;}
  30731.    { (exit 1); exit 1; }; }
  30732. fi
  30733. if test -z "${aout_sdl_plugin_TRUE}" && test -z "${aout_sdl_plugin_FALSE}"; then
  30734.   { { echo "$as_me:$LINENO: error: conditional \"aout_sdl_plugin\" was never defined.
  30735. Usually this means the macro was only invoked conditionally." >&5
  30736. echo "$as_me: error: conditional \"aout_sdl_plugin\" was never defined.
  30737. Usually this means the macro was only invoked conditionally." >&2;}
  30738.    { (exit 1); exit 1; }; }
  30739. fi
  30740. if test -z "${aout_sdl_builtin_TRUE}" && test -z "${aout_sdl_builtin_FALSE}"; then
  30741.   { { echo "$as_me:$LINENO: error: conditional \"aout_sdl_builtin\" was never defined.
  30742. Usually this means the macro was only invoked conditionally." >&5
  30743. echo "$as_me: error: conditional \"aout_sdl_builtin\" was never defined.
  30744. Usually this means the macro was only invoked conditionally." >&2;}
  30745.    { (exit 1); exit 1; }; }
  30746. fi
  30747. if test -z "${waveout_plugin_TRUE}" && test -z "${waveout_plugin_FALSE}"; then
  30748.   { { echo "$as_me:$LINENO: error: conditional \"waveout_plugin\" was never defined.
  30749. Usually this means the macro was only invoked conditionally." >&5
  30750. echo "$as_me: error: conditional \"waveout_plugin\" was never defined.
  30751. Usually this means the macro was only invoked conditionally." >&2;}
  30752.    { (exit 1); exit 1; }; }
  30753. fi
  30754. if test -z "${waveout_builtin_TRUE}" && test -z "${waveout_builtin_FALSE}"; then
  30755.   { { echo "$as_me:$LINENO: error: conditional \"waveout_builtin\" was never defined.
  30756. Usually this means the macro was only invoked conditionally." >&5
  30757. echo "$as_me: error: conditional \"waveout_builtin\" was never defined.
  30758. Usually this means the macro was only invoked conditionally." >&2;}
  30759.    { (exit 1); exit 1; }; }
  30760. fi
  30761. if test -z "${a52_plugin_TRUE}" && test -z "${a52_plugin_FALSE}"; then
  30762.   { { echo "$as_me:$LINENO: error: conditional \"a52_plugin\" was never defined.
  30763. Usually this means the macro was only invoked conditionally." >&5
  30764. echo "$as_me: error: conditional \"a52_plugin\" was never defined.
  30765. Usually this means the macro was only invoked conditionally." >&2;}
  30766.    { (exit 1); exit 1; }; }
  30767. fi
  30768. if test -z "${a52_builtin_TRUE}" && test -z "${a52_builtin_FALSE}"; then
  30769.   { { echo "$as_me:$LINENO: error: conditional \"a52_builtin\" was never defined.
  30770. Usually this means the macro was only invoked conditionally." >&5
  30771. echo "$as_me: error: conditional \"a52_builtin\" was never defined.
  30772. Usually this means the macro was only invoked conditionally." >&2;}
  30773.    { (exit 1); exit 1; }; }
  30774. fi
  30775. if test -z "${dts_plugin_TRUE}" && test -z "${dts_plugin_FALSE}"; then
  30776.   { { echo "$as_me:$LINENO: error: conditional \"dts_plugin\" was never defined.
  30777. Usually this means the macro was only invoked conditionally." >&5
  30778. echo "$as_me: error: conditional \"dts_plugin\" was never defined.
  30779. Usually this means the macro was only invoked conditionally." >&2;}
  30780.    { (exit 1); exit 1; }; }
  30781. fi
  30782. if test -z "${dts_builtin_TRUE}" && test -z "${dts_builtin_FALSE}"; then
  30783.   { { echo "$as_me:$LINENO: error: conditional \"dts_builtin\" was never defined.
  30784. Usually this means the macro was only invoked conditionally." >&5
  30785. echo "$as_me: error: conditional \"dts_builtin\" was never defined.
  30786. Usually this means the macro was only invoked conditionally." >&2;}
  30787.    { (exit 1); exit 1; }; }
  30788. fi
  30789. if test -z "${flacdec_plugin_TRUE}" && test -z "${flacdec_plugin_FALSE}"; then
  30790.   { { echo "$as_me:$LINENO: error: conditional \"flacdec_plugin\" was never defined.
  30791. Usually this means the macro was only invoked conditionally." >&5
  30792. echo "$as_me: error: conditional \"flacdec_plugin\" was never defined.
  30793. Usually this means the macro was only invoked conditionally." >&2;}
  30794.    { (exit 1); exit 1; }; }
  30795. fi
  30796. if test -z "${flacdec_builtin_TRUE}" && test -z "${flacdec_builtin_FALSE}"; then
  30797.   { { echo "$as_me:$LINENO: error: conditional \"flacdec_builtin\" was never defined.
  30798. Usually this means the macro was only invoked conditionally." >&5
  30799. echo "$as_me: error: conditional \"flacdec_builtin\" was never defined.
  30800. Usually this means the macro was only invoked conditionally." >&2;}
  30801.    { (exit 1); exit 1; }; }
  30802. fi
  30803. if test -z "${lpcm_plugin_TRUE}" && test -z "${lpcm_plugin_FALSE}"; then
  30804.   { { echo "$as_me:$LINENO: error: conditional \"lpcm_plugin\" was never defined.
  30805. Usually this means the macro was only invoked conditionally." >&5
  30806. echo "$as_me: error: conditional \"lpcm_plugin\" was never defined.
  30807. Usually this means the macro was only invoked conditionally." >&2;}
  30808.    { (exit 1); exit 1; }; }
  30809. fi
  30810. if test -z "${lpcm_builtin_TRUE}" && test -z "${lpcm_builtin_FALSE}"; then
  30811.   { { echo "$as_me:$LINENO: error: conditional \"lpcm_builtin\" was never defined.
  30812. Usually this means the macro was only invoked conditionally." >&5
  30813. echo "$as_me: error: conditional \"lpcm_builtin\" was never defined.
  30814. Usually this means the macro was only invoked conditionally." >&2;}
  30815.    { (exit 1); exit 1; }; }
  30816. fi
  30817. if test -z "${araw_plugin_TRUE}" && test -z "${araw_plugin_FALSE}"; then
  30818.   { { echo "$as_me:$LINENO: error: conditional \"araw_plugin\" was never defined.
  30819. Usually this means the macro was only invoked conditionally." >&5
  30820. echo "$as_me: error: conditional \"araw_plugin\" was never defined.
  30821. Usually this means the macro was only invoked conditionally." >&2;}
  30822.    { (exit 1); exit 1; }; }
  30823. fi
  30824. if test -z "${araw_builtin_TRUE}" && test -z "${araw_builtin_FALSE}"; then
  30825.   { { echo "$as_me:$LINENO: error: conditional \"araw_builtin\" was never defined.
  30826. Usually this means the macro was only invoked conditionally." >&5
  30827. echo "$as_me: error: conditional \"araw_builtin\" was never defined.
  30828. Usually this means the macro was only invoked conditionally." >&2;}
  30829.    { (exit 1); exit 1; }; }
  30830. fi
  30831. if test -z "${vorbis_plugin_TRUE}" && test -z "${vorbis_plugin_FALSE}"; then
  30832.   { { echo "$as_me:$LINENO: error: conditional \"vorbis_plugin\" was never defined.
  30833. Usually this means the macro was only invoked conditionally." >&5
  30834. echo "$as_me: error: conditional \"vorbis_plugin\" was never defined.
  30835. Usually this means the macro was only invoked conditionally." >&2;}
  30836.    { (exit 1); exit 1; }; }
  30837. fi
  30838. if test -z "${vorbis_builtin_TRUE}" && test -z "${vorbis_builtin_FALSE}"; then
  30839.   { { echo "$as_me:$LINENO: error: conditional \"vorbis_builtin\" was never defined.
  30840. Usually this means the macro was only invoked conditionally." >&5
  30841. echo "$as_me: error: conditional \"vorbis_builtin\" was never defined.
  30842. Usually this means the macro was only invoked conditionally." >&2;}
  30843.    { (exit 1); exit 1; }; }
  30844. fi
  30845. if test -z "${tarkin_plugin_TRUE}" && test -z "${tarkin_plugin_FALSE}"; then
  30846.   { { echo "$as_me:$LINENO: error: conditional \"tarkin_plugin\" was never defined.
  30847. Usually this means the macro was only invoked conditionally." >&5
  30848. echo "$as_me: error: conditional \"tarkin_plugin\" was never defined.
  30849. Usually this means the macro was only invoked conditionally." >&2;}
  30850.    { (exit 1); exit 1; }; }
  30851. fi
  30852. if test -z "${tarkin_builtin_TRUE}" && test -z "${tarkin_builtin_FALSE}"; then
  30853.   { { echo "$as_me:$LINENO: error: conditional \"tarkin_builtin\" was never defined.
  30854. Usually this means the macro was only invoked conditionally." >&5
  30855. echo "$as_me: error: conditional \"tarkin_builtin\" was never defined.
  30856. Usually this means the macro was only invoked conditionally." >&2;}
  30857.    { (exit 1); exit 1; }; }
  30858. fi
  30859. if test -z "${theora_plugin_TRUE}" && test -z "${theora_plugin_FALSE}"; then
  30860.   { { echo "$as_me:$LINENO: error: conditional \"theora_plugin\" was never defined.
  30861. Usually this means the macro was only invoked conditionally." >&5
  30862. echo "$as_me: error: conditional \"theora_plugin\" was never defined.
  30863. Usually this means the macro was only invoked conditionally." >&2;}
  30864.    { (exit 1); exit 1; }; }
  30865. fi
  30866. if test -z "${theora_builtin_TRUE}" && test -z "${theora_builtin_FALSE}"; then
  30867.   { { echo "$as_me:$LINENO: error: conditional \"theora_builtin\" was never defined.
  30868. Usually this means the macro was only invoked conditionally." >&5
  30869. echo "$as_me: error: conditional \"theora_builtin\" was never defined.
  30870. Usually this means the macro was only invoked conditionally." >&2;}
  30871.    { (exit 1); exit 1; }; }
  30872. fi
  30873. if test -z "${tremor_plugin_TRUE}" && test -z "${tremor_plugin_FALSE}"; then
  30874.   { { echo "$as_me:$LINENO: error: conditional \"tremor_plugin\" was never defined.
  30875. Usually this means the macro was only invoked conditionally." >&5
  30876. echo "$as_me: error: conditional \"tremor_plugin\" was never defined.
  30877. Usually this means the macro was only invoked conditionally." >&2;}
  30878.    { (exit 1); exit 1; }; }
  30879. fi
  30880. if test -z "${tremor_builtin_TRUE}" && test -z "${tremor_builtin_FALSE}"; then
  30881.   { { echo "$as_me:$LINENO: error: conditional \"tremor_builtin\" was never defined.
  30882. Usually this means the macro was only invoked conditionally." >&5
  30883. echo "$as_me: error: conditional \"tremor_builtin\" was never defined.
  30884. Usually this means the macro was only invoked conditionally." >&2;}
  30885.    { (exit 1); exit 1; }; }
  30886. fi
  30887. if test -z "${dv_plugin_TRUE}" && test -z "${dv_plugin_FALSE}"; then
  30888.   { { echo "$as_me:$LINENO: error: conditional \"dv_plugin\" was never defined.
  30889. Usually this means the macro was only invoked conditionally." >&5
  30890. echo "$as_me: error: conditional \"dv_plugin\" was never defined.
  30891. Usually this means the macro was only invoked conditionally." >&2;}
  30892.    { (exit 1); exit 1; }; }
  30893. fi
  30894. if test -z "${dv_builtin_TRUE}" && test -z "${dv_builtin_FALSE}"; then
  30895.   { { echo "$as_me:$LINENO: error: conditional \"dv_builtin\" was never defined.
  30896. Usually this means the macro was only invoked conditionally." >&5
  30897. echo "$as_me: error: conditional \"dv_builtin\" was never defined.
  30898. Usually this means the macro was only invoked conditionally." >&2;}
  30899.    { (exit 1); exit 1; }; }
  30900. fi
  30901. if test -z "${xvid_plugin_TRUE}" && test -z "${xvid_plugin_FALSE}"; then
  30902.   { { echo "$as_me:$LINENO: error: conditional \"xvid_plugin\" was never defined.
  30903. Usually this means the macro was only invoked conditionally." >&5
  30904. echo "$as_me: error: conditional \"xvid_plugin\" was never defined.
  30905. Usually this means the macro was only invoked conditionally." >&2;}
  30906.    { (exit 1); exit 1; }; }
  30907. fi
  30908. if test -z "${xvid_builtin_TRUE}" && test -z "${xvid_builtin_FALSE}"; then
  30909.   { { echo "$as_me:$LINENO: error: conditional \"xvid_builtin\" was never defined.
  30910. Usually this means the macro was only invoked conditionally." >&5
  30911. echo "$as_me: error: conditional \"xvid_builtin\" was never defined.
  30912. Usually this means the macro was only invoked conditionally." >&2;}
  30913.    { (exit 1); exit 1; }; }
  30914. fi
  30915. if test -z "${adpcm_plugin_TRUE}" && test -z "${adpcm_plugin_FALSE}"; then
  30916.   { { echo "$as_me:$LINENO: error: conditional \"adpcm_plugin\" was never defined.
  30917. Usually this means the macro was only invoked conditionally." >&5
  30918. echo "$as_me: error: conditional \"adpcm_plugin\" was never defined.
  30919. Usually this means the macro was only invoked conditionally." >&2;}
  30920.    { (exit 1); exit 1; }; }
  30921. fi
  30922. if test -z "${adpcm_builtin_TRUE}" && test -z "${adpcm_builtin_FALSE}"; then
  30923.   { { echo "$as_me:$LINENO: error: conditional \"adpcm_builtin\" was never defined.
  30924. Usually this means the macro was only invoked conditionally." >&5
  30925. echo "$as_me: error: conditional \"adpcm_builtin\" was never defined.
  30926. Usually this means the macro was only invoked conditionally." >&2;}
  30927.    { (exit 1); exit 1; }; }
  30928. fi
  30929. if test -z "${mpeg_audio_plugin_TRUE}" && test -z "${mpeg_audio_plugin_FALSE}"; then
  30930.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_audio_plugin\" was never defined.
  30931. Usually this means the macro was only invoked conditionally." >&5
  30932. echo "$as_me: error: conditional \"mpeg_audio_plugin\" was never defined.
  30933. Usually this means the macro was only invoked conditionally." >&2;}
  30934.    { (exit 1); exit 1; }; }
  30935. fi
  30936. if test -z "${mpeg_audio_builtin_TRUE}" && test -z "${mpeg_audio_builtin_FALSE}"; then
  30937.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_audio_builtin\" was never defined.
  30938. Usually this means the macro was only invoked conditionally." >&5
  30939. echo "$as_me: error: conditional \"mpeg_audio_builtin\" was never defined.
  30940. Usually this means the macro was only invoked conditionally." >&2;}
  30941.    { (exit 1); exit 1; }; }
  30942. fi
  30943. if test -z "${libmpeg2_plugin_TRUE}" && test -z "${libmpeg2_plugin_FALSE}"; then
  30944.   { { echo "$as_me:$LINENO: error: conditional \"libmpeg2_plugin\" was never defined.
  30945. Usually this means the macro was only invoked conditionally." >&5
  30946. echo "$as_me: error: conditional \"libmpeg2_plugin\" was never defined.
  30947. Usually this means the macro was only invoked conditionally." >&2;}
  30948.    { (exit 1); exit 1; }; }
  30949. fi
  30950. if test -z "${libmpeg2_builtin_TRUE}" && test -z "${libmpeg2_builtin_FALSE}"; then
  30951.   { { echo "$as_me:$LINENO: error: conditional \"libmpeg2_builtin\" was never defined.
  30952. Usually this means the macro was only invoked conditionally." >&5
  30953. echo "$as_me: error: conditional \"libmpeg2_builtin\" was never defined.
  30954. Usually this means the macro was only invoked conditionally." >&2;}
  30955.    { (exit 1); exit 1; }; }
  30956. fi
  30957. if test -z "${rawvideo_plugin_TRUE}" && test -z "${rawvideo_plugin_FALSE}"; then
  30958.   { { echo "$as_me:$LINENO: error: conditional \"rawvideo_plugin\" was never defined.
  30959. Usually this means the macro was only invoked conditionally." >&5
  30960. echo "$as_me: error: conditional \"rawvideo_plugin\" was never defined.
  30961. Usually this means the macro was only invoked conditionally." >&2;}
  30962.    { (exit 1); exit 1; }; }
  30963. fi
  30964. if test -z "${rawvideo_builtin_TRUE}" && test -z "${rawvideo_builtin_FALSE}"; then
  30965.   { { echo "$as_me:$LINENO: error: conditional \"rawvideo_builtin\" was never defined.
  30966. Usually this means the macro was only invoked conditionally." >&5
  30967. echo "$as_me: error: conditional \"rawvideo_builtin\" was never defined.
  30968. Usually this means the macro was only invoked conditionally." >&2;}
  30969.    { (exit 1); exit 1; }; }
  30970. fi
  30971. if test -z "${a52old_plugin_TRUE}" && test -z "${a52old_plugin_FALSE}"; then
  30972.   { { echo "$as_me:$LINENO: error: conditional \"a52old_plugin\" was never defined.
  30973. Usually this means the macro was only invoked conditionally." >&5
  30974. echo "$as_me: error: conditional \"a52old_plugin\" was never defined.
  30975. Usually this means the macro was only invoked conditionally." >&2;}
  30976.    { (exit 1); exit 1; }; }
  30977. fi
  30978. if test -z "${a52old_builtin_TRUE}" && test -z "${a52old_builtin_FALSE}"; then
  30979.   { { echo "$as_me:$LINENO: error: conditional \"a52old_builtin\" was never defined.
  30980. Usually this means the macro was only invoked conditionally." >&5
  30981. echo "$as_me: error: conditional \"a52old_builtin\" was never defined.
  30982. Usually this means the macro was only invoked conditionally." >&2;}
  30983.    { (exit 1); exit 1; }; }
  30984. fi
  30985. if test -z "${downmix_plugin_TRUE}" && test -z "${downmix_plugin_FALSE}"; then
  30986.   { { echo "$as_me:$LINENO: error: conditional \"downmix_plugin\" was never defined.
  30987. Usually this means the macro was only invoked conditionally." >&5
  30988. echo "$as_me: error: conditional \"downmix_plugin\" was never defined.
  30989. Usually this means the macro was only invoked conditionally." >&2;}
  30990.    { (exit 1); exit 1; }; }
  30991. fi
  30992. if test -z "${downmix_builtin_TRUE}" && test -z "${downmix_builtin_FALSE}"; then
  30993.   { { echo "$as_me:$LINENO: error: conditional \"downmix_builtin\" was never defined.
  30994. Usually this means the macro was only invoked conditionally." >&5
  30995. echo "$as_me: error: conditional \"downmix_builtin\" was never defined.
  30996. Usually this means the macro was only invoked conditionally." >&2;}
  30997.    { (exit 1); exit 1; }; }
  30998. fi
  30999. if test -z "${downmixsse_plugin_TRUE}" && test -z "${downmixsse_plugin_FALSE}"; then
  31000.   { { echo "$as_me:$LINENO: error: conditional \"downmixsse_plugin\" was never defined.
  31001. Usually this means the macro was only invoked conditionally." >&5
  31002. echo "$as_me: error: conditional \"downmixsse_plugin\" was never defined.
  31003. Usually this means the macro was only invoked conditionally." >&2;}
  31004.    { (exit 1); exit 1; }; }
  31005. fi
  31006. if test -z "${downmixsse_builtin_TRUE}" && test -z "${downmixsse_builtin_FALSE}"; then
  31007.   { { echo "$as_me:$LINENO: error: conditional \"downmixsse_builtin\" was never defined.
  31008. Usually this means the macro was only invoked conditionally." >&5
  31009. echo "$as_me: error: conditional \"downmixsse_builtin\" was never defined.
  31010. Usually this means the macro was only invoked conditionally." >&2;}
  31011.    { (exit 1); exit 1; }; }
  31012. fi
  31013. if test -z "${downmix3dn_plugin_TRUE}" && test -z "${downmix3dn_plugin_FALSE}"; then
  31014.   { { echo "$as_me:$LINENO: error: conditional \"downmix3dn_plugin\" was never defined.
  31015. Usually this means the macro was only invoked conditionally." >&5
  31016. echo "$as_me: error: conditional \"downmix3dn_plugin\" was never defined.
  31017. Usually this means the macro was only invoked conditionally." >&2;}
  31018.    { (exit 1); exit 1; }; }
  31019. fi
  31020. if test -z "${downmix3dn_builtin_TRUE}" && test -z "${downmix3dn_builtin_FALSE}"; then
  31021.   { { echo "$as_me:$LINENO: error: conditional \"downmix3dn_builtin\" was never defined.
  31022. Usually this means the macro was only invoked conditionally." >&5
  31023. echo "$as_me: error: conditional \"downmix3dn_builtin\" was never defined.
  31024. Usually this means the macro was only invoked conditionally." >&2;}
  31025.    { (exit 1); exit 1; }; }
  31026. fi
  31027. if test -z "${imdct_plugin_TRUE}" && test -z "${imdct_plugin_FALSE}"; then
  31028.   { { echo "$as_me:$LINENO: error: conditional \"imdct_plugin\" was never defined.
  31029. Usually this means the macro was only invoked conditionally." >&5
  31030. echo "$as_me: error: conditional \"imdct_plugin\" was never defined.
  31031. Usually this means the macro was only invoked conditionally." >&2;}
  31032.    { (exit 1); exit 1; }; }
  31033. fi
  31034. if test -z "${imdct_builtin_TRUE}" && test -z "${imdct_builtin_FALSE}"; then
  31035.   { { echo "$as_me:$LINENO: error: conditional \"imdct_builtin\" was never defined.
  31036. Usually this means the macro was only invoked conditionally." >&5
  31037. echo "$as_me: error: conditional \"imdct_builtin\" was never defined.
  31038. Usually this means the macro was only invoked conditionally." >&2;}
  31039.    { (exit 1); exit 1; }; }
  31040. fi
  31041. if test -z "${imdctsse_plugin_TRUE}" && test -z "${imdctsse_plugin_FALSE}"; then
  31042.   { { echo "$as_me:$LINENO: error: conditional \"imdctsse_plugin\" was never defined.
  31043. Usually this means the macro was only invoked conditionally." >&5
  31044. echo "$as_me: error: conditional \"imdctsse_plugin\" was never defined.
  31045. Usually this means the macro was only invoked conditionally." >&2;}
  31046.    { (exit 1); exit 1; }; }
  31047. fi
  31048. if test -z "${imdctsse_builtin_TRUE}" && test -z "${imdctsse_builtin_FALSE}"; then
  31049.   { { echo "$as_me:$LINENO: error: conditional \"imdctsse_builtin\" was never defined.
  31050. Usually this means the macro was only invoked conditionally." >&5
  31051. echo "$as_me: error: conditional \"imdctsse_builtin\" was never defined.
  31052. Usually this means the macro was only invoked conditionally." >&2;}
  31053.    { (exit 1); exit 1; }; }
  31054. fi
  31055. if test -z "${imdct3dn_plugin_TRUE}" && test -z "${imdct3dn_plugin_FALSE}"; then
  31056.   { { echo "$as_me:$LINENO: error: conditional \"imdct3dn_plugin\" was never defined.
  31057. Usually this means the macro was only invoked conditionally." >&5
  31058. echo "$as_me: error: conditional \"imdct3dn_plugin\" was never defined.
  31059. Usually this means the macro was only invoked conditionally." >&2;}
  31060.    { (exit 1); exit 1; }; }
  31061. fi
  31062. if test -z "${imdct3dn_builtin_TRUE}" && test -z "${imdct3dn_builtin_FALSE}"; then
  31063.   { { echo "$as_me:$LINENO: error: conditional \"imdct3dn_builtin\" was never defined.
  31064. Usually this means the macro was only invoked conditionally." >&5
  31065. echo "$as_me: error: conditional \"imdct3dn_builtin\" was never defined.
  31066. Usually this means the macro was only invoked conditionally." >&2;}
  31067.    { (exit 1); exit 1; }; }
  31068. fi
  31069. if test -z "${cinepak_plugin_TRUE}" && test -z "${cinepak_plugin_FALSE}"; then
  31070.   { { echo "$as_me:$LINENO: error: conditional \"cinepak_plugin\" was never defined.
  31071. Usually this means the macro was only invoked conditionally." >&5
  31072. echo "$as_me: error: conditional \"cinepak_plugin\" was never defined.
  31073. Usually this means the macro was only invoked conditionally." >&2;}
  31074.    { (exit 1); exit 1; }; }
  31075. fi
  31076. if test -z "${cinepak_builtin_TRUE}" && test -z "${cinepak_builtin_FALSE}"; then
  31077.   { { echo "$as_me:$LINENO: error: conditional \"cinepak_builtin\" was never defined.
  31078. Usually this means the macro was only invoked conditionally." >&5
  31079. echo "$as_me: error: conditional \"cinepak_builtin\" was never defined.
  31080. Usually this means the macro was only invoked conditionally." >&2;}
  31081.    { (exit 1); exit 1; }; }
  31082. fi
  31083. if test -z "${faad_plugin_TRUE}" && test -z "${faad_plugin_FALSE}"; then
  31084.   { { echo "$as_me:$LINENO: error: conditional \"faad_plugin\" was never defined.
  31085. Usually this means the macro was only invoked conditionally." >&5
  31086. echo "$as_me: error: conditional \"faad_plugin\" was never defined.
  31087. Usually this means the macro was only invoked conditionally." >&2;}
  31088.    { (exit 1); exit 1; }; }
  31089. fi
  31090. if test -z "${faad_builtin_TRUE}" && test -z "${faad_builtin_FALSE}"; then
  31091.   { { echo "$as_me:$LINENO: error: conditional \"faad_builtin\" was never defined.
  31092. Usually this means the macro was only invoked conditionally." >&5
  31093. echo "$as_me: error: conditional \"faad_builtin\" was never defined.
  31094. Usually this means the macro was only invoked conditionally." >&2;}
  31095.    { (exit 1); exit 1; }; }
  31096. fi
  31097. if test -z "${ffmpeg_plugin_TRUE}" && test -z "${ffmpeg_plugin_FALSE}"; then
  31098.   { { echo "$as_me:$LINENO: error: conditional \"ffmpeg_plugin\" was never defined.
  31099. Usually this means the macro was only invoked conditionally." >&5
  31100. echo "$as_me: error: conditional \"ffmpeg_plugin\" was never defined.
  31101. Usually this means the macro was only invoked conditionally." >&2;}
  31102.    { (exit 1); exit 1; }; }
  31103. fi
  31104. if test -z "${ffmpeg_builtin_TRUE}" && test -z "${ffmpeg_builtin_FALSE}"; then
  31105.   { { echo "$as_me:$LINENO: error: conditional \"ffmpeg_builtin\" was never defined.
  31106. Usually this means the macro was only invoked conditionally." >&5
  31107. echo "$as_me: error: conditional \"ffmpeg_builtin\" was never defined.
  31108. Usually this means the macro was only invoked conditionally." >&2;}
  31109.    { (exit 1); exit 1; }; }
  31110. fi
  31111. if test -z "${postprocessing_c_plugin_TRUE}" && test -z "${postprocessing_c_plugin_FALSE}"; then
  31112.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_c_plugin\" was never defined.
  31113. Usually this means the macro was only invoked conditionally." >&5
  31114. echo "$as_me: error: conditional \"postprocessing_c_plugin\" was never defined.
  31115. Usually this means the macro was only invoked conditionally." >&2;}
  31116.    { (exit 1); exit 1; }; }
  31117. fi
  31118. if test -z "${postprocessing_c_builtin_TRUE}" && test -z "${postprocessing_c_builtin_FALSE}"; then
  31119.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_c_builtin\" was never defined.
  31120. Usually this means the macro was only invoked conditionally." >&5
  31121. echo "$as_me: error: conditional \"postprocessing_c_builtin\" was never defined.
  31122. Usually this means the macro was only invoked conditionally." >&2;}
  31123.    { (exit 1); exit 1; }; }
  31124. fi
  31125. if test -z "${postprocessing_mmx_plugin_TRUE}" && test -z "${postprocessing_mmx_plugin_FALSE}"; then
  31126.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_mmx_plugin\" was never defined.
  31127. Usually this means the macro was only invoked conditionally." >&5
  31128. echo "$as_me: error: conditional \"postprocessing_mmx_plugin\" was never defined.
  31129. Usually this means the macro was only invoked conditionally." >&2;}
  31130.    { (exit 1); exit 1; }; }
  31131. fi
  31132. if test -z "${postprocessing_mmx_builtin_TRUE}" && test -z "${postprocessing_mmx_builtin_FALSE}"; then
  31133.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_mmx_builtin\" was never defined.
  31134. Usually this means the macro was only invoked conditionally." >&5
  31135. echo "$as_me: error: conditional \"postprocessing_mmx_builtin\" was never defined.
  31136. Usually this means the macro was only invoked conditionally." >&2;}
  31137.    { (exit 1); exit 1; }; }
  31138. fi
  31139. if test -z "${postprocessing_mmxext_plugin_TRUE}" && test -z "${postprocessing_mmxext_plugin_FALSE}"; then
  31140.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_mmxext_plugin\" was never defined.
  31141. Usually this means the macro was only invoked conditionally." >&5
  31142. echo "$as_me: error: conditional \"postprocessing_mmxext_plugin\" was never defined.
  31143. Usually this means the macro was only invoked conditionally." >&2;}
  31144.    { (exit 1); exit 1; }; }
  31145. fi
  31146. if test -z "${postprocessing_mmxext_builtin_TRUE}" && test -z "${postprocessing_mmxext_builtin_FALSE}"; then
  31147.   { { echo "$as_me:$LINENO: error: conditional \"postprocessing_mmxext_builtin\" was never defined.
  31148. Usually this means the macro was only invoked conditionally." >&5
  31149. echo "$as_me: error: conditional \"postprocessing_mmxext_builtin\" was never defined.
  31150. Usually this means the macro was only invoked conditionally." >&2;}
  31151.    { (exit 1); exit 1; }; }
  31152. fi
  31153. if test -z "${mpeg_video_plugin_TRUE}" && test -z "${mpeg_video_plugin_FALSE}"; then
  31154.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_video_plugin\" was never defined.
  31155. Usually this means the macro was only invoked conditionally." >&5
  31156. echo "$as_me: error: conditional \"mpeg_video_plugin\" was never defined.
  31157. Usually this means the macro was only invoked conditionally." >&2;}
  31158.    { (exit 1); exit 1; }; }
  31159. fi
  31160. if test -z "${mpeg_video_builtin_TRUE}" && test -z "${mpeg_video_builtin_FALSE}"; then
  31161.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_video_builtin\" was never defined.
  31162. Usually this means the macro was only invoked conditionally." >&5
  31163. echo "$as_me: error: conditional \"mpeg_video_builtin\" was never defined.
  31164. Usually this means the macro was only invoked conditionally." >&2;}
  31165.    { (exit 1); exit 1; }; }
  31166. fi
  31167. if test -z "${idct_plugin_TRUE}" && test -z "${idct_plugin_FALSE}"; then
  31168.   { { echo "$as_me:$LINENO: error: conditional \"idct_plugin\" was never defined.
  31169. Usually this means the macro was only invoked conditionally." >&5
  31170. echo "$as_me: error: conditional \"idct_plugin\" was never defined.
  31171. Usually this means the macro was only invoked conditionally." >&2;}
  31172.    { (exit 1); exit 1; }; }
  31173. fi
  31174. if test -z "${idct_builtin_TRUE}" && test -z "${idct_builtin_FALSE}"; then
  31175.   { { echo "$as_me:$LINENO: error: conditional \"idct_builtin\" was never defined.
  31176. Usually this means the macro was only invoked conditionally." >&5
  31177. echo "$as_me: error: conditional \"idct_builtin\" was never defined.
  31178. Usually this means the macro was only invoked conditionally." >&2;}
  31179.    { (exit 1); exit 1; }; }
  31180. fi
  31181. if test -z "${idctclassic_plugin_TRUE}" && test -z "${idctclassic_plugin_FALSE}"; then
  31182.   { { echo "$as_me:$LINENO: error: conditional \"idctclassic_plugin\" was never defined.
  31183. Usually this means the macro was only invoked conditionally." >&5
  31184. echo "$as_me: error: conditional \"idctclassic_plugin\" was never defined.
  31185. Usually this means the macro was only invoked conditionally." >&2;}
  31186.    { (exit 1); exit 1; }; }
  31187. fi
  31188. if test -z "${idctclassic_builtin_TRUE}" && test -z "${idctclassic_builtin_FALSE}"; then
  31189.   { { echo "$as_me:$LINENO: error: conditional \"idctclassic_builtin\" was never defined.
  31190. Usually this means the macro was only invoked conditionally." >&5
  31191. echo "$as_me: error: conditional \"idctclassic_builtin\" was never defined.
  31192. Usually this means the macro was only invoked conditionally." >&2;}
  31193.    { (exit 1); exit 1; }; }
  31194. fi
  31195. if test -z "${idctmmx_plugin_TRUE}" && test -z "${idctmmx_plugin_FALSE}"; then
  31196.   { { echo "$as_me:$LINENO: error: conditional \"idctmmx_plugin\" was never defined.
  31197. Usually this means the macro was only invoked conditionally." >&5
  31198. echo "$as_me: error: conditional \"idctmmx_plugin\" was never defined.
  31199. Usually this means the macro was only invoked conditionally." >&2;}
  31200.    { (exit 1); exit 1; }; }
  31201. fi
  31202. if test -z "${idctmmx_builtin_TRUE}" && test -z "${idctmmx_builtin_FALSE}"; then
  31203.   { { echo "$as_me:$LINENO: error: conditional \"idctmmx_builtin\" was never defined.
  31204. Usually this means the macro was only invoked conditionally." >&5
  31205. echo "$as_me: error: conditional \"idctmmx_builtin\" was never defined.
  31206. Usually this means the macro was only invoked conditionally." >&2;}
  31207.    { (exit 1); exit 1; }; }
  31208. fi
  31209. if test -z "${idctmmxext_plugin_TRUE}" && test -z "${idctmmxext_plugin_FALSE}"; then
  31210.   { { echo "$as_me:$LINENO: error: conditional \"idctmmxext_plugin\" was never defined.
  31211. Usually this means the macro was only invoked conditionally." >&5
  31212. echo "$as_me: error: conditional \"idctmmxext_plugin\" was never defined.
  31213. Usually this means the macro was only invoked conditionally." >&2;}
  31214.    { (exit 1); exit 1; }; }
  31215. fi
  31216. if test -z "${idctmmxext_builtin_TRUE}" && test -z "${idctmmxext_builtin_FALSE}"; then
  31217.   { { echo "$as_me:$LINENO: error: conditional \"idctmmxext_builtin\" was never defined.
  31218. Usually this means the macro was only invoked conditionally." >&5
  31219. echo "$as_me: error: conditional \"idctmmxext_builtin\" was never defined.
  31220. Usually this means the macro was only invoked conditionally." >&2;}
  31221.    { (exit 1); exit 1; }; }
  31222. fi
  31223. if test -z "${idctaltivec_plugin_TRUE}" && test -z "${idctaltivec_plugin_FALSE}"; then
  31224.   { { echo "$as_me:$LINENO: error: conditional \"idctaltivec_plugin\" was never defined.
  31225. Usually this means the macro was only invoked conditionally." >&5
  31226. echo "$as_me: error: conditional \"idctaltivec_plugin\" was never defined.
  31227. Usually this means the macro was only invoked conditionally." >&2;}
  31228.    { (exit 1); exit 1; }; }
  31229. fi
  31230. if test -z "${idctaltivec_builtin_TRUE}" && test -z "${idctaltivec_builtin_FALSE}"; then
  31231.   { { echo "$as_me:$LINENO: error: conditional \"idctaltivec_builtin\" was never defined.
  31232. Usually this means the macro was only invoked conditionally." >&5
  31233. echo "$as_me: error: conditional \"idctaltivec_builtin\" was never defined.
  31234. Usually this means the macro was only invoked conditionally." >&2;}
  31235.    { (exit 1); exit 1; }; }
  31236. fi
  31237. if test -z "${motion_plugin_TRUE}" && test -z "${motion_plugin_FALSE}"; then
  31238.   { { echo "$as_me:$LINENO: error: conditional \"motion_plugin\" was never defined.
  31239. Usually this means the macro was only invoked conditionally." >&5
  31240. echo "$as_me: error: conditional \"motion_plugin\" was never defined.
  31241. Usually this means the macro was only invoked conditionally." >&2;}
  31242.    { (exit 1); exit 1; }; }
  31243. fi
  31244. if test -z "${motion_builtin_TRUE}" && test -z "${motion_builtin_FALSE}"; then
  31245.   { { echo "$as_me:$LINENO: error: conditional \"motion_builtin\" was never defined.
  31246. Usually this means the macro was only invoked conditionally." >&5
  31247. echo "$as_me: error: conditional \"motion_builtin\" was never defined.
  31248. Usually this means the macro was only invoked conditionally." >&2;}
  31249.    { (exit 1); exit 1; }; }
  31250. fi
  31251. if test -z "${motionmmx_plugin_TRUE}" && test -z "${motionmmx_plugin_FALSE}"; then
  31252.   { { echo "$as_me:$LINENO: error: conditional \"motionmmx_plugin\" was never defined.
  31253. Usually this means the macro was only invoked conditionally." >&5
  31254. echo "$as_me: error: conditional \"motionmmx_plugin\" was never defined.
  31255. Usually this means the macro was only invoked conditionally." >&2;}
  31256.    { (exit 1); exit 1; }; }
  31257. fi
  31258. if test -z "${motionmmx_builtin_TRUE}" && test -z "${motionmmx_builtin_FALSE}"; then
  31259.   { { echo "$as_me:$LINENO: error: conditional \"motionmmx_builtin\" was never defined.
  31260. Usually this means the macro was only invoked conditionally." >&5
  31261. echo "$as_me: error: conditional \"motionmmx_builtin\" was never defined.
  31262. Usually this means the macro was only invoked conditionally." >&2;}
  31263.    { (exit 1); exit 1; }; }
  31264. fi
  31265. if test -z "${motionmmxext_plugin_TRUE}" && test -z "${motionmmxext_plugin_FALSE}"; then
  31266.   { { echo "$as_me:$LINENO: error: conditional \"motionmmxext_plugin\" was never defined.
  31267. Usually this means the macro was only invoked conditionally." >&5
  31268. echo "$as_me: error: conditional \"motionmmxext_plugin\" was never defined.
  31269. Usually this means the macro was only invoked conditionally." >&2;}
  31270.    { (exit 1); exit 1; }; }
  31271. fi
  31272. if test -z "${motionmmxext_builtin_TRUE}" && test -z "${motionmmxext_builtin_FALSE}"; then
  31273.   { { echo "$as_me:$LINENO: error: conditional \"motionmmxext_builtin\" was never defined.
  31274. Usually this means the macro was only invoked conditionally." >&5
  31275. echo "$as_me: error: conditional \"motionmmxext_builtin\" was never defined.
  31276. Usually this means the macro was only invoked conditionally." >&2;}
  31277.    { (exit 1); exit 1; }; }
  31278. fi
  31279. if test -z "${motion3dnow_plugin_TRUE}" && test -z "${motion3dnow_plugin_FALSE}"; then
  31280.   { { echo "$as_me:$LINENO: error: conditional \"motion3dnow_plugin\" was never defined.
  31281. Usually this means the macro was only invoked conditionally." >&5
  31282. echo "$as_me: error: conditional \"motion3dnow_plugin\" was never defined.
  31283. Usually this means the macro was only invoked conditionally." >&2;}
  31284.    { (exit 1); exit 1; }; }
  31285. fi
  31286. if test -z "${motion3dnow_builtin_TRUE}" && test -z "${motion3dnow_builtin_FALSE}"; then
  31287.   { { echo "$as_me:$LINENO: error: conditional \"motion3dnow_builtin\" was never defined.
  31288. Usually this means the macro was only invoked conditionally." >&5
  31289. echo "$as_me: error: conditional \"motion3dnow_builtin\" was never defined.
  31290. Usually this means the macro was only invoked conditionally." >&2;}
  31291.    { (exit 1); exit 1; }; }
  31292. fi
  31293. if test -z "${motionaltivec_plugin_TRUE}" && test -z "${motionaltivec_plugin_FALSE}"; then
  31294.   { { echo "$as_me:$LINENO: error: conditional \"motionaltivec_plugin\" was never defined.
  31295. Usually this means the macro was only invoked conditionally." >&5
  31296. echo "$as_me: error: conditional \"motionaltivec_plugin\" was never defined.
  31297. Usually this means the macro was only invoked conditionally." >&2;}
  31298.    { (exit 1); exit 1; }; }
  31299. fi
  31300. if test -z "${motionaltivec_builtin_TRUE}" && test -z "${motionaltivec_builtin_FALSE}"; then
  31301.   { { echo "$as_me:$LINENO: error: conditional \"motionaltivec_builtin\" was never defined.
  31302. Usually this means the macro was only invoked conditionally." >&5
  31303. echo "$as_me: error: conditional \"motionaltivec_builtin\" was never defined.
  31304. Usually this means the macro was only invoked conditionally." >&2;}
  31305.    { (exit 1); exit 1; }; }
  31306. fi
  31307. if test -z "${spudec_plugin_TRUE}" && test -z "${spudec_plugin_FALSE}"; then
  31308.   { { echo "$as_me:$LINENO: error: conditional \"spudec_plugin\" was never defined.
  31309. Usually this means the macro was only invoked conditionally." >&5
  31310. echo "$as_me: error: conditional \"spudec_plugin\" was never defined.
  31311. Usually this means the macro was only invoked conditionally." >&2;}
  31312.    { (exit 1); exit 1; }; }
  31313. fi
  31314. if test -z "${spudec_builtin_TRUE}" && test -z "${spudec_builtin_FALSE}"; then
  31315.   { { echo "$as_me:$LINENO: error: conditional \"spudec_builtin\" was never defined.
  31316. Usually this means the macro was only invoked conditionally." >&5
  31317. echo "$as_me: error: conditional \"spudec_builtin\" was never defined.
  31318. Usually this means the macro was only invoked conditionally." >&2;}
  31319.    { (exit 1); exit 1; }; }
  31320. fi
  31321. if test -z "${lirc_plugin_TRUE}" && test -z "${lirc_plugin_FALSE}"; then
  31322.   { { echo "$as_me:$LINENO: error: conditional \"lirc_plugin\" was never defined.
  31323. Usually this means the macro was only invoked conditionally." >&5
  31324. echo "$as_me: error: conditional \"lirc_plugin\" was never defined.
  31325. Usually this means the macro was only invoked conditionally." >&2;}
  31326.    { (exit 1); exit 1; }; }
  31327. fi
  31328. if test -z "${lirc_builtin_TRUE}" && test -z "${lirc_builtin_FALSE}"; then
  31329.   { { echo "$as_me:$LINENO: error: conditional \"lirc_builtin\" was never defined.
  31330. Usually this means the macro was only invoked conditionally." >&5
  31331. echo "$as_me: error: conditional \"lirc_builtin\" was never defined.
  31332. Usually this means the macro was only invoked conditionally." >&2;}
  31333.    { (exit 1); exit 1; }; }
  31334. fi
  31335. if test -z "${rc_plugin_TRUE}" && test -z "${rc_plugin_FALSE}"; then
  31336.   { { echo "$as_me:$LINENO: error: conditional \"rc_plugin\" was never defined.
  31337. Usually this means the macro was only invoked conditionally." >&5
  31338. echo "$as_me: error: conditional \"rc_plugin\" was never defined.
  31339. Usually this means the macro was only invoked conditionally." >&2;}
  31340.    { (exit 1); exit 1; }; }
  31341. fi
  31342. if test -z "${rc_builtin_TRUE}" && test -z "${rc_builtin_FALSE}"; then
  31343.   { { echo "$as_me:$LINENO: error: conditional \"rc_builtin\" was never defined.
  31344. Usually this means the macro was only invoked conditionally." >&5
  31345. echo "$as_me: error: conditional \"rc_builtin\" was never defined.
  31346. Usually this means the macro was only invoked conditionally." >&2;}
  31347.    { (exit 1); exit 1; }; }
  31348. fi
  31349. if test -z "${gestures_plugin_TRUE}" && test -z "${gestures_plugin_FALSE}"; then
  31350.   { { echo "$as_me:$LINENO: error: conditional \"gestures_plugin\" was never defined.
  31351. Usually this means the macro was only invoked conditionally." >&5
  31352. echo "$as_me: error: conditional \"gestures_plugin\" was never defined.
  31353. Usually this means the macro was only invoked conditionally." >&2;}
  31354.    { (exit 1); exit 1; }; }
  31355. fi
  31356. if test -z "${gestures_builtin_TRUE}" && test -z "${gestures_builtin_FALSE}"; then
  31357.   { { echo "$as_me:$LINENO: error: conditional \"gestures_builtin\" was never defined.
  31358. Usually this means the macro was only invoked conditionally." >&5
  31359. echo "$as_me: error: conditional \"gestures_builtin\" was never defined.
  31360. Usually this means the macro was only invoked conditionally." >&2;}
  31361.    { (exit 1); exit 1; }; }
  31362. fi
  31363. if test -z "${a52sys_plugin_TRUE}" && test -z "${a52sys_plugin_FALSE}"; then
  31364.   { { echo "$as_me:$LINENO: error: conditional \"a52sys_plugin\" was never defined.
  31365. Usually this means the macro was only invoked conditionally." >&5
  31366. echo "$as_me: error: conditional \"a52sys_plugin\" was never defined.
  31367. Usually this means the macro was only invoked conditionally." >&2;}
  31368.    { (exit 1); exit 1; }; }
  31369. fi
  31370. if test -z "${a52sys_builtin_TRUE}" && test -z "${a52sys_builtin_FALSE}"; then
  31371.   { { echo "$as_me:$LINENO: error: conditional \"a52sys_builtin\" was never defined.
  31372. Usually this means the macro was only invoked conditionally." >&5
  31373. echo "$as_me: error: conditional \"a52sys_builtin\" was never defined.
  31374. Usually this means the macro was only invoked conditionally." >&2;}
  31375.    { (exit 1); exit 1; }; }
  31376. fi
  31377. if test -z "${flac_plugin_TRUE}" && test -z "${flac_plugin_FALSE}"; then
  31378.   { { echo "$as_me:$LINENO: error: conditional \"flac_plugin\" was never defined.
  31379. Usually this means the macro was only invoked conditionally." >&5
  31380. echo "$as_me: error: conditional \"flac_plugin\" was never defined.
  31381. Usually this means the macro was only invoked conditionally." >&2;}
  31382.    { (exit 1); exit 1; }; }
  31383. fi
  31384. if test -z "${flac_builtin_TRUE}" && test -z "${flac_builtin_FALSE}"; then
  31385.   { { echo "$as_me:$LINENO: error: conditional \"flac_builtin\" was never defined.
  31386. Usually this means the macro was only invoked conditionally." >&5
  31387. echo "$as_me: error: conditional \"flac_builtin\" was never defined.
  31388. Usually this means the macro was only invoked conditionally." >&2;}
  31389.    { (exit 1); exit 1; }; }
  31390. fi
  31391. if test -z "${ogg_plugin_TRUE}" && test -z "${ogg_plugin_FALSE}"; then
  31392.   { { echo "$as_me:$LINENO: error: conditional \"ogg_plugin\" was never defined.
  31393. Usually this means the macro was only invoked conditionally." >&5
  31394. echo "$as_me: error: conditional \"ogg_plugin\" was never defined.
  31395. Usually this means the macro was only invoked conditionally." >&2;}
  31396.    { (exit 1); exit 1; }; }
  31397. fi
  31398. if test -z "${ogg_builtin_TRUE}" && test -z "${ogg_builtin_FALSE}"; then
  31399.   { { echo "$as_me:$LINENO: error: conditional \"ogg_builtin\" was never defined.
  31400. Usually this means the macro was only invoked conditionally." >&5
  31401. echo "$as_me: error: conditional \"ogg_builtin\" was never defined.
  31402. Usually this means the macro was only invoked conditionally." >&2;}
  31403.    { (exit 1); exit 1; }; }
  31404. fi
  31405. if test -z "${m3u_plugin_TRUE}" && test -z "${m3u_plugin_FALSE}"; then
  31406.   { { echo "$as_me:$LINENO: error: conditional \"m3u_plugin\" was never defined.
  31407. Usually this means the macro was only invoked conditionally." >&5
  31408. echo "$as_me: error: conditional \"m3u_plugin\" was never defined.
  31409. Usually this means the macro was only invoked conditionally." >&2;}
  31410.    { (exit 1); exit 1; }; }
  31411. fi
  31412. if test -z "${m3u_builtin_TRUE}" && test -z "${m3u_builtin_FALSE}"; then
  31413.   { { echo "$as_me:$LINENO: error: conditional \"m3u_builtin\" was never defined.
  31414. Usually this means the macro was only invoked conditionally." >&5
  31415. echo "$as_me: error: conditional \"m3u_builtin\" was never defined.
  31416. Usually this means the macro was only invoked conditionally." >&2;}
  31417.    { (exit 1); exit 1; }; }
  31418. fi
  31419. if test -z "${demuxdump_plugin_TRUE}" && test -z "${demuxdump_plugin_FALSE}"; then
  31420.   { { echo "$as_me:$LINENO: error: conditional \"demuxdump_plugin\" was never defined.
  31421. Usually this means the macro was only invoked conditionally." >&5
  31422. echo "$as_me: error: conditional \"demuxdump_plugin\" was never defined.
  31423. Usually this means the macro was only invoked conditionally." >&2;}
  31424.    { (exit 1); exit 1; }; }
  31425. fi
  31426. if test -z "${demuxdump_builtin_TRUE}" && test -z "${demuxdump_builtin_FALSE}"; then
  31427.   { { echo "$as_me:$LINENO: error: conditional \"demuxdump_builtin\" was never defined.
  31428. Usually this means the macro was only invoked conditionally." >&5
  31429. echo "$as_me: error: conditional \"demuxdump_builtin\" was never defined.
  31430. Usually this means the macro was only invoked conditionally." >&2;}
  31431.    { (exit 1); exit 1; }; }
  31432. fi
  31433. if test -z "${rawdv_plugin_TRUE}" && test -z "${rawdv_plugin_FALSE}"; then
  31434.   { { echo "$as_me:$LINENO: error: conditional \"rawdv_plugin\" was never defined.
  31435. Usually this means the macro was only invoked conditionally." >&5
  31436. echo "$as_me: error: conditional \"rawdv_plugin\" was never defined.
  31437. Usually this means the macro was only invoked conditionally." >&2;}
  31438.    { (exit 1); exit 1; }; }
  31439. fi
  31440. if test -z "${rawdv_builtin_TRUE}" && test -z "${rawdv_builtin_FALSE}"; then
  31441.   { { echo "$as_me:$LINENO: error: conditional \"rawdv_builtin\" was never defined.
  31442. Usually this means the macro was only invoked conditionally." >&5
  31443. echo "$as_me: error: conditional \"rawdv_builtin\" was never defined.
  31444. Usually this means the macro was only invoked conditionally." >&2;}
  31445.    { (exit 1); exit 1; }; }
  31446. fi
  31447. if test -z "${au_plugin_TRUE}" && test -z "${au_plugin_FALSE}"; then
  31448.   { { echo "$as_me:$LINENO: error: conditional \"au_plugin\" was never defined.
  31449. Usually this means the macro was only invoked conditionally." >&5
  31450. echo "$as_me: error: conditional \"au_plugin\" was never defined.
  31451. Usually this means the macro was only invoked conditionally." >&2;}
  31452.    { (exit 1); exit 1; }; }
  31453. fi
  31454. if test -z "${au_builtin_TRUE}" && test -z "${au_builtin_FALSE}"; then
  31455.   { { echo "$as_me:$LINENO: error: conditional \"au_builtin\" was never defined.
  31456. Usually this means the macro was only invoked conditionally." >&5
  31457. echo "$as_me: error: conditional \"au_builtin\" was never defined.
  31458. Usually this means the macro was only invoked conditionally." >&2;}
  31459.    { (exit 1); exit 1; }; }
  31460. fi
  31461. if test -z "${aac_plugin_TRUE}" && test -z "${aac_plugin_FALSE}"; then
  31462.   { { echo "$as_me:$LINENO: error: conditional \"aac_plugin\" was never defined.
  31463. Usually this means the macro was only invoked conditionally." >&5
  31464. echo "$as_me: error: conditional \"aac_plugin\" was never defined.
  31465. Usually this means the macro was only invoked conditionally." >&2;}
  31466.    { (exit 1); exit 1; }; }
  31467. fi
  31468. if test -z "${aac_builtin_TRUE}" && test -z "${aac_builtin_FALSE}"; then
  31469.   { { echo "$as_me:$LINENO: error: conditional \"aac_builtin\" was never defined.
  31470. Usually this means the macro was only invoked conditionally." >&5
  31471. echo "$as_me: error: conditional \"aac_builtin\" was never defined.
  31472. Usually this means the macro was only invoked conditionally." >&2;}
  31473.    { (exit 1); exit 1; }; }
  31474. fi
  31475. if test -z "${avi_plugin_TRUE}" && test -z "${avi_plugin_FALSE}"; then
  31476.   { { echo "$as_me:$LINENO: error: conditional \"avi_plugin\" was never defined.
  31477. Usually this means the macro was only invoked conditionally." >&5
  31478. echo "$as_me: error: conditional \"avi_plugin\" was never defined.
  31479. Usually this means the macro was only invoked conditionally." >&2;}
  31480.    { (exit 1); exit 1; }; }
  31481. fi
  31482. if test -z "${avi_builtin_TRUE}" && test -z "${avi_builtin_FALSE}"; then
  31483.   { { echo "$as_me:$LINENO: error: conditional \"avi_builtin\" was never defined.
  31484. Usually this means the macro was only invoked conditionally." >&5
  31485. echo "$as_me: error: conditional \"avi_builtin\" was never defined.
  31486. Usually this means the macro was only invoked conditionally." >&2;}
  31487.    { (exit 1); exit 1; }; }
  31488. fi
  31489. if test -z "${asf_plugin_TRUE}" && test -z "${asf_plugin_FALSE}"; then
  31490.   { { echo "$as_me:$LINENO: error: conditional \"asf_plugin\" was never defined.
  31491. Usually this means the macro was only invoked conditionally." >&5
  31492. echo "$as_me: error: conditional \"asf_plugin\" was never defined.
  31493. Usually this means the macro was only invoked conditionally." >&2;}
  31494.    { (exit 1); exit 1; }; }
  31495. fi
  31496. if test -z "${asf_builtin_TRUE}" && test -z "${asf_builtin_FALSE}"; then
  31497.   { { echo "$as_me:$LINENO: error: conditional \"asf_builtin\" was never defined.
  31498. Usually this means the macro was only invoked conditionally." >&5
  31499. echo "$as_me: error: conditional \"asf_builtin\" was never defined.
  31500. Usually this means the macro was only invoked conditionally." >&2;}
  31501.    { (exit 1); exit 1; }; }
  31502. fi
  31503. if test -z "${mp4_plugin_TRUE}" && test -z "${mp4_plugin_FALSE}"; then
  31504.   { { echo "$as_me:$LINENO: error: conditional \"mp4_plugin\" was never defined.
  31505. Usually this means the macro was only invoked conditionally." >&5
  31506. echo "$as_me: error: conditional \"mp4_plugin\" was never defined.
  31507. Usually this means the macro was only invoked conditionally." >&2;}
  31508.    { (exit 1); exit 1; }; }
  31509. fi
  31510. if test -z "${mp4_builtin_TRUE}" && test -z "${mp4_builtin_FALSE}"; then
  31511.   { { echo "$as_me:$LINENO: error: conditional \"mp4_builtin\" was never defined.
  31512. Usually this means the macro was only invoked conditionally." >&5
  31513. echo "$as_me: error: conditional \"mp4_builtin\" was never defined.
  31514. Usually this means the macro was only invoked conditionally." >&2;}
  31515.    { (exit 1); exit 1; }; }
  31516. fi
  31517. if test -z "${mpeg_system_plugin_TRUE}" && test -z "${mpeg_system_plugin_FALSE}"; then
  31518.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_system_plugin\" was never defined.
  31519. Usually this means the macro was only invoked conditionally." >&5
  31520. echo "$as_me: error: conditional \"mpeg_system_plugin\" was never defined.
  31521. Usually this means the macro was only invoked conditionally." >&2;}
  31522.    { (exit 1); exit 1; }; }
  31523. fi
  31524. if test -z "${mpeg_system_builtin_TRUE}" && test -z "${mpeg_system_builtin_FALSE}"; then
  31525.   { { echo "$as_me:$LINENO: error: conditional \"mpeg_system_builtin\" was never defined.
  31526. Usually this means the macro was only invoked conditionally." >&5
  31527. echo "$as_me: error: conditional \"mpeg_system_builtin\" was never defined.
  31528. Usually this means the macro was only invoked conditionally." >&2;}
  31529.    { (exit 1); exit 1; }; }
  31530. fi
  31531. if test -z "${es_plugin_TRUE}" && test -z "${es_plugin_FALSE}"; then
  31532.   { { echo "$as_me:$LINENO: error: conditional \"es_plugin\" was never defined.
  31533. Usually this means the macro was only invoked conditionally." >&5
  31534. echo "$as_me: error: conditional \"es_plugin\" was never defined.
  31535. Usually this means the macro was only invoked conditionally." >&2;}
  31536.    { (exit 1); exit 1; }; }
  31537. fi
  31538. if test -z "${es_builtin_TRUE}" && test -z "${es_builtin_FALSE}"; then
  31539.   { { echo "$as_me:$LINENO: error: conditional \"es_builtin\" was never defined.
  31540. Usually this means the macro was only invoked conditionally." >&5
  31541. echo "$as_me: error: conditional \"es_builtin\" was never defined.
  31542. Usually this means the macro was only invoked conditionally." >&2;}
  31543.    { (exit 1); exit 1; }; }
  31544. fi
  31545. if test -z "${m4v_plugin_TRUE}" && test -z "${m4v_plugin_FALSE}"; then
  31546.   { { echo "$as_me:$LINENO: error: conditional \"m4v_plugin\" was never defined.
  31547. Usually this means the macro was only invoked conditionally." >&5
  31548. echo "$as_me: error: conditional \"m4v_plugin\" was never defined.
  31549. Usually this means the macro was only invoked conditionally." >&2;}
  31550.    { (exit 1); exit 1; }; }
  31551. fi
  31552. if test -z "${m4v_builtin_TRUE}" && test -z "${m4v_builtin_FALSE}"; then
  31553.   { { echo "$as_me:$LINENO: error: conditional \"m4v_builtin\" was never defined.
  31554. Usually this means the macro was only invoked conditionally." >&5
  31555. echo "$as_me: error: conditional \"m4v_builtin\" was never defined.
  31556. Usually this means the macro was only invoked conditionally." >&2;}
  31557.    { (exit 1); exit 1; }; }
  31558. fi
  31559. if test -z "${ps_plugin_TRUE}" && test -z "${ps_plugin_FALSE}"; then
  31560.   { { echo "$as_me:$LINENO: error: conditional \"ps_plugin\" was never defined.
  31561. Usually this means the macro was only invoked conditionally." >&5
  31562. echo "$as_me: error: conditional \"ps_plugin\" was never defined.
  31563. Usually this means the macro was only invoked conditionally." >&2;}
  31564.    { (exit 1); exit 1; }; }
  31565. fi
  31566. if test -z "${ps_builtin_TRUE}" && test -z "${ps_builtin_FALSE}"; then
  31567.   { { echo "$as_me:$LINENO: error: conditional \"ps_builtin\" was never defined.
  31568. Usually this means the macro was only invoked conditionally." >&5
  31569. echo "$as_me: error: conditional \"ps_builtin\" was never defined.
  31570. Usually this means the macro was only invoked conditionally." >&2;}
  31571.    { (exit 1); exit 1; }; }
  31572. fi
  31573. if test -z "${ts_plugin_TRUE}" && test -z "${ts_plugin_FALSE}"; then
  31574.   { { echo "$as_me:$LINENO: error: conditional \"ts_plugin\" was never defined.
  31575. Usually this means the macro was only invoked conditionally." >&5
  31576. echo "$as_me: error: conditional \"ts_plugin\" was never defined.
  31577. Usually this means the macro was only invoked conditionally." >&2;}
  31578.    { (exit 1); exit 1; }; }
  31579. fi
  31580. if test -z "${ts_builtin_TRUE}" && test -z "${ts_builtin_FALSE}"; then
  31581.   { { echo "$as_me:$LINENO: error: conditional \"ts_builtin\" was never defined.
  31582. Usually this means the macro was only invoked conditionally." >&5
  31583. echo "$as_me: error: conditional \"ts_builtin\" was never defined.
  31584. Usually this means the macro was only invoked conditionally." >&2;}
  31585.    { (exit 1); exit 1; }; }
  31586. fi
  31587. if test -z "${ts_dvbpsi_plugin_TRUE}" && test -z "${ts_dvbpsi_plugin_FALSE}"; then
  31588.   { { echo "$as_me:$LINENO: error: conditional \"ts_dvbpsi_plugin\" was never defined.
  31589. Usually this means the macro was only invoked conditionally." >&5
  31590. echo "$as_me: error: conditional \"ts_dvbpsi_plugin\" was never defined.
  31591. Usually this means the macro was only invoked conditionally." >&2;}
  31592.    { (exit 1); exit 1; }; }
  31593. fi
  31594. if test -z "${ts_dvbpsi_builtin_TRUE}" && test -z "${ts_dvbpsi_builtin_FALSE}"; then
  31595.   { { echo "$as_me:$LINENO: error: conditional \"ts_dvbpsi_builtin\" was never defined.
  31596. Usually this means the macro was only invoked conditionally." >&5
  31597. echo "$as_me: error: conditional \"ts_dvbpsi_builtin\" was never defined.
  31598. Usually this means the macro was only invoked conditionally." >&2;}
  31599.    { (exit 1); exit 1; }; }
  31600. fi
  31601. if test -z "${audio_plugin_TRUE}" && test -z "${audio_plugin_FALSE}"; then
  31602.   { { echo "$as_me:$LINENO: error: conditional \"audio_plugin\" was never defined.
  31603. Usually this means the macro was only invoked conditionally." >&5
  31604. echo "$as_me: error: conditional \"audio_plugin\" was never defined.
  31605. Usually this means the macro was only invoked conditionally." >&2;}
  31606.    { (exit 1); exit 1; }; }
  31607. fi
  31608. if test -z "${audio_builtin_TRUE}" && test -z "${audio_builtin_FALSE}"; then
  31609.   { { echo "$as_me:$LINENO: error: conditional \"audio_builtin\" was never defined.
  31610. Usually this means the macro was only invoked conditionally." >&5
  31611. echo "$as_me: error: conditional \"audio_builtin\" was never defined.
  31612. Usually this means the macro was only invoked conditionally." >&2;}
  31613.    { (exit 1); exit 1; }; }
  31614. fi
  31615. if test -z "${id3_plugin_TRUE}" && test -z "${id3_plugin_FALSE}"; then
  31616.   { { echo "$as_me:$LINENO: error: conditional \"id3_plugin\" was never defined.
  31617. Usually this means the macro was only invoked conditionally." >&5
  31618. echo "$as_me: error: conditional \"id3_plugin\" was never defined.
  31619. Usually this means the macro was only invoked conditionally." >&2;}
  31620.    { (exit 1); exit 1; }; }
  31621. fi
  31622. if test -z "${id3_builtin_TRUE}" && test -z "${id3_builtin_FALSE}"; then
  31623.   { { echo "$as_me:$LINENO: error: conditional \"id3_builtin\" was never defined.
  31624. Usually this means the macro was only invoked conditionally." >&5
  31625. echo "$as_me: error: conditional \"id3_builtin\" was never defined.
  31626. Usually this means the macro was only invoked conditionally." >&2;}
  31627.    { (exit 1); exit 1; }; }
  31628. fi
  31629. if test -z "${id3tag_plugin_TRUE}" && test -z "${id3tag_plugin_FALSE}"; then
  31630.   { { echo "$as_me:$LINENO: error: conditional \"id3tag_plugin\" was never defined.
  31631. Usually this means the macro was only invoked conditionally." >&5
  31632. echo "$as_me: error: conditional \"id3tag_plugin\" was never defined.
  31633. Usually this means the macro was only invoked conditionally." >&2;}
  31634.    { (exit 1); exit 1; }; }
  31635. fi
  31636. if test -z "${id3tag_builtin_TRUE}" && test -z "${id3tag_builtin_FALSE}"; then
  31637.   { { echo "$as_me:$LINENO: error: conditional \"id3tag_builtin\" was never defined.
  31638. Usually this means the macro was only invoked conditionally." >&5
  31639. echo "$as_me: error: conditional \"id3tag_builtin\" was never defined.
  31640. Usually this means the macro was only invoked conditionally." >&2;}
  31641.    { (exit 1); exit 1; }; }
  31642. fi
  31643. if test -z "${demuxsub_plugin_TRUE}" && test -z "${demuxsub_plugin_FALSE}"; then
  31644.   { { echo "$as_me:$LINENO: error: conditional \"demuxsub_plugin\" was never defined.
  31645. Usually this means the macro was only invoked conditionally." >&5
  31646. echo "$as_me: error: conditional \"demuxsub_plugin\" was never defined.
  31647. Usually this means the macro was only invoked conditionally." >&2;}
  31648.    { (exit 1); exit 1; }; }
  31649. fi
  31650. if test -z "${demuxsub_builtin_TRUE}" && test -z "${demuxsub_builtin_FALSE}"; then
  31651.   { { echo "$as_me:$LINENO: error: conditional \"demuxsub_builtin\" was never defined.
  31652. Usually this means the macro was only invoked conditionally." >&5
  31653. echo "$as_me: error: conditional \"demuxsub_builtin\" was never defined.
  31654. Usually this means the macro was only invoked conditionally." >&2;}
  31655.    { (exit 1); exit 1; }; }
  31656. fi
  31657. if test -z "${wav_plugin_TRUE}" && test -z "${wav_plugin_FALSE}"; then
  31658.   { { echo "$as_me:$LINENO: error: conditional \"wav_plugin\" was never defined.
  31659. Usually this means the macro was only invoked conditionally." >&5
  31660. echo "$as_me: error: conditional \"wav_plugin\" was never defined.
  31661. Usually this means the macro was only invoked conditionally." >&2;}
  31662.    { (exit 1); exit 1; }; }
  31663. fi
  31664. if test -z "${wav_builtin_TRUE}" && test -z "${wav_builtin_FALSE}"; then
  31665.   { { echo "$as_me:$LINENO: error: conditional \"wav_builtin\" was never defined.
  31666. Usually this means the macro was only invoked conditionally." >&5
  31667. echo "$as_me: error: conditional \"wav_builtin\" was never defined.
  31668. Usually this means the macro was only invoked conditionally." >&2;}
  31669.    { (exit 1); exit 1; }; }
  31670. fi
  31671. if test -z "${encoder_xvid_plugin_TRUE}" && test -z "${encoder_xvid_plugin_FALSE}"; then
  31672.   { { echo "$as_me:$LINENO: error: conditional \"encoder_xvid_plugin\" was never defined.
  31673. Usually this means the macro was only invoked conditionally." >&5
  31674. echo "$as_me: error: conditional \"encoder_xvid_plugin\" was never defined.
  31675. Usually this means the macro was only invoked conditionally." >&2;}
  31676.    { (exit 1); exit 1; }; }
  31677. fi
  31678. if test -z "${encoder_xvid_builtin_TRUE}" && test -z "${encoder_xvid_builtin_FALSE}"; then
  31679.   { { echo "$as_me:$LINENO: error: conditional \"encoder_xvid_builtin\" was never defined.
  31680. Usually this means the macro was only invoked conditionally." >&5
  31681. echo "$as_me: error: conditional \"encoder_xvid_builtin\" was never defined.
  31682. Usually this means the macro was only invoked conditionally." >&2;}
  31683.    { (exit 1); exit 1; }; }
  31684. fi
  31685. if test -z "${encoder_ffmpeg_plugin_TRUE}" && test -z "${encoder_ffmpeg_plugin_FALSE}"; then
  31686.   { { echo "$as_me:$LINENO: error: conditional \"encoder_ffmpeg_plugin\" was never defined.
  31687. Usually this means the macro was only invoked conditionally." >&5
  31688. echo "$as_me: error: conditional \"encoder_ffmpeg_plugin\" was never defined.
  31689. Usually this means the macro was only invoked conditionally." >&2;}
  31690.    { (exit 1); exit 1; }; }
  31691. fi
  31692. if test -z "${encoder_ffmpeg_builtin_TRUE}" && test -z "${encoder_ffmpeg_builtin_FALSE}"; then
  31693.   { { echo "$as_me:$LINENO: error: conditional \"encoder_ffmpeg_builtin\" was never defined.
  31694. Usually this means the macro was only invoked conditionally." >&5
  31695. echo "$as_me: error: conditional \"encoder_ffmpeg_builtin\" was never defined.
  31696. Usually this means the macro was only invoked conditionally." >&2;}
  31697.    { (exit 1); exit 1; }; }
  31698. fi
  31699. if test -z "${beos_plugin_TRUE}" && test -z "${beos_plugin_FALSE}"; then
  31700.   { { echo "$as_me:$LINENO: error: conditional \"beos_plugin\" was never defined.
  31701. Usually this means the macro was only invoked conditionally." >&5
  31702. echo "$as_me: error: conditional \"beos_plugin\" was never defined.
  31703. Usually this means the macro was only invoked conditionally." >&2;}
  31704.    { (exit 1); exit 1; }; }
  31705. fi
  31706. if test -z "${beos_builtin_TRUE}" && test -z "${beos_builtin_FALSE}"; then
  31707.   { { echo "$as_me:$LINENO: error: conditional \"beos_builtin\" was never defined.
  31708. Usually this means the macro was only invoked conditionally." >&5
  31709. echo "$as_me: error: conditional \"beos_builtin\" was never defined.
  31710. Usually this means the macro was only invoked conditionally." >&2;}
  31711.    { (exit 1); exit 1; }; }
  31712. fi
  31713. if test -z "${familiar_plugin_TRUE}" && test -z "${familiar_plugin_FALSE}"; then
  31714.   { { echo "$as_me:$LINENO: error: conditional \"familiar_plugin\" was never defined.
  31715. Usually this means the macro was only invoked conditionally." >&5
  31716. echo "$as_me: error: conditional \"familiar_plugin\" was never defined.
  31717. Usually this means the macro was only invoked conditionally." >&2;}
  31718.    { (exit 1); exit 1; }; }
  31719. fi
  31720. if test -z "${familiar_builtin_TRUE}" && test -z "${familiar_builtin_FALSE}"; then
  31721.   { { echo "$as_me:$LINENO: error: conditional \"familiar_builtin\" was never defined.
  31722. Usually this means the macro was only invoked conditionally." >&5
  31723. echo "$as_me: error: conditional \"familiar_builtin\" was never defined.
  31724. Usually this means the macro was only invoked conditionally." >&2;}
  31725.    { (exit 1); exit 1; }; }
  31726. fi
  31727. if test -z "${gtk_plugin_TRUE}" && test -z "${gtk_plugin_FALSE}"; then
  31728.   { { echo "$as_me:$LINENO: error: conditional \"gtk_plugin\" was never defined.
  31729. Usually this means the macro was only invoked conditionally." >&5
  31730. echo "$as_me: error: conditional \"gtk_plugin\" was never defined.
  31731. Usually this means the macro was only invoked conditionally." >&2;}
  31732.    { (exit 1); exit 1; }; }
  31733. fi
  31734. if test -z "${gtk_builtin_TRUE}" && test -z "${gtk_builtin_FALSE}"; then
  31735.   { { echo "$as_me:$LINENO: error: conditional \"gtk_builtin\" was never defined.
  31736. Usually this means the macro was only invoked conditionally." >&5
  31737. echo "$as_me: error: conditional \"gtk_builtin\" was never defined.
  31738. Usually this means the macro was only invoked conditionally." >&2;}
  31739.    { (exit 1); exit 1; }; }
  31740. fi
  31741. if test -z "${gnome_plugin_TRUE}" && test -z "${gnome_plugin_FALSE}"; then
  31742.   { { echo "$as_me:$LINENO: error: conditional \"gnome_plugin\" was never defined.
  31743. Usually this means the macro was only invoked conditionally." >&5
  31744. echo "$as_me: error: conditional \"gnome_plugin\" was never defined.
  31745. Usually this means the macro was only invoked conditionally." >&2;}
  31746.    { (exit 1); exit 1; }; }
  31747. fi
  31748. if test -z "${gnome_builtin_TRUE}" && test -z "${gnome_builtin_FALSE}"; then
  31749.   { { echo "$as_me:$LINENO: error: conditional \"gnome_builtin\" was never defined.
  31750. Usually this means the macro was only invoked conditionally." >&5
  31751. echo "$as_me: error: conditional \"gnome_builtin\" was never defined.
  31752. Usually this means the macro was only invoked conditionally." >&2;}
  31753.    { (exit 1); exit 1; }; }
  31754. fi
  31755. if test -z "${gtk2_plugin_TRUE}" && test -z "${gtk2_plugin_FALSE}"; then
  31756.   { { echo "$as_me:$LINENO: error: conditional \"gtk2_plugin\" was never defined.
  31757. Usually this means the macro was only invoked conditionally." >&5
  31758. echo "$as_me: error: conditional \"gtk2_plugin\" was never defined.
  31759. Usually this means the macro was only invoked conditionally." >&2;}
  31760.    { (exit 1); exit 1; }; }
  31761. fi
  31762. if test -z "${gtk2_builtin_TRUE}" && test -z "${gtk2_builtin_FALSE}"; then
  31763.   { { echo "$as_me:$LINENO: error: conditional \"gtk2_builtin\" was never defined.
  31764. Usually this means the macro was only invoked conditionally." >&5
  31765. echo "$as_me: error: conditional \"gtk2_builtin\" was never defined.
  31766. Usually this means the macro was only invoked conditionally." >&2;}
  31767.    { (exit 1); exit 1; }; }
  31768. fi
  31769. if test -z "${gnome2_plugin_TRUE}" && test -z "${gnome2_plugin_FALSE}"; then
  31770.   { { echo "$as_me:$LINENO: error: conditional \"gnome2_plugin\" was never defined.
  31771. Usually this means the macro was only invoked conditionally." >&5
  31772. echo "$as_me: error: conditional \"gnome2_plugin\" was never defined.
  31773. Usually this means the macro was only invoked conditionally." >&2;}
  31774.    { (exit 1); exit 1; }; }
  31775. fi
  31776. if test -z "${gnome2_builtin_TRUE}" && test -z "${gnome2_builtin_FALSE}"; then
  31777.   { { echo "$as_me:$LINENO: error: conditional \"gnome2_builtin\" was never defined.
  31778. Usually this means the macro was only invoked conditionally." >&5
  31779. echo "$as_me: error: conditional \"gnome2_builtin\" was never defined.
  31780. Usually this means the macro was only invoked conditionally." >&2;}
  31781.    { (exit 1); exit 1; }; }
  31782. fi
  31783. if test -z "${kde_plugin_TRUE}" && test -z "${kde_plugin_FALSE}"; then
  31784.   { { echo "$as_me:$LINENO: error: conditional \"kde_plugin\" was never defined.
  31785. Usually this means the macro was only invoked conditionally." >&5
  31786. echo "$as_me: error: conditional \"kde_plugin\" was never defined.
  31787. Usually this means the macro was only invoked conditionally." >&2;}
  31788.    { (exit 1); exit 1; }; }
  31789. fi
  31790. if test -z "${kde_builtin_TRUE}" && test -z "${kde_builtin_FALSE}"; then
  31791.   { { echo "$as_me:$LINENO: error: conditional \"kde_builtin\" was never defined.
  31792. Usually this means the macro was only invoked conditionally." >&5
  31793. echo "$as_me: error: conditional \"kde_builtin\" was never defined.
  31794. Usually this means the macro was only invoked conditionally." >&2;}
  31795.    { (exit 1); exit 1; }; }
  31796. fi
  31797. if test -z "${macosx_plugin_TRUE}" && test -z "${macosx_plugin_FALSE}"; then
  31798.   { { echo "$as_me:$LINENO: error: conditional \"macosx_plugin\" was never defined.
  31799. Usually this means the macro was only invoked conditionally." >&5
  31800. echo "$as_me: error: conditional \"macosx_plugin\" was never defined.
  31801. Usually this means the macro was only invoked conditionally." >&2;}
  31802.    { (exit 1); exit 1; }; }
  31803. fi
  31804. if test -z "${macosx_builtin_TRUE}" && test -z "${macosx_builtin_FALSE}"; then
  31805.   { { echo "$as_me:$LINENO: error: conditional \"macosx_builtin\" was never defined.
  31806. Usually this means the macro was only invoked conditionally." >&5
  31807. echo "$as_me: error: conditional \"macosx_builtin\" was never defined.
  31808. Usually this means the macro was only invoked conditionally." >&2;}
  31809.    { (exit 1); exit 1; }; }
  31810. fi
  31811. if test -z "${ncurses_plugin_TRUE}" && test -z "${ncurses_plugin_FALSE}"; then
  31812.   { { echo "$as_me:$LINENO: error: conditional \"ncurses_plugin\" was never defined.
  31813. Usually this means the macro was only invoked conditionally." >&5
  31814. echo "$as_me: error: conditional \"ncurses_plugin\" was never defined.
  31815. Usually this means the macro was only invoked conditionally." >&2;}
  31816.    { (exit 1); exit 1; }; }
  31817. fi
  31818. if test -z "${ncurses_builtin_TRUE}" && test -z "${ncurses_builtin_FALSE}"; then
  31819.   { { echo "$as_me:$LINENO: error: conditional \"ncurses_builtin\" was never defined.
  31820. Usually this means the macro was only invoked conditionally." >&5
  31821. echo "$as_me: error: conditional \"ncurses_builtin\" was never defined.
  31822. Usually this means the macro was only invoked conditionally." >&2;}
  31823.    { (exit 1); exit 1; }; }
  31824. fi
  31825. if test -z "${qnx_plugin_TRUE}" && test -z "${qnx_plugin_FALSE}"; then
  31826.   { { echo "$as_me:$LINENO: error: conditional \"qnx_plugin\" was never defined.
  31827. Usually this means the macro was only invoked conditionally." >&5
  31828. echo "$as_me: error: conditional \"qnx_plugin\" was never defined.
  31829. Usually this means the macro was only invoked conditionally." >&2;}
  31830.    { (exit 1); exit 1; }; }
  31831. fi
  31832. if test -z "${qnx_builtin_TRUE}" && test -z "${qnx_builtin_FALSE}"; then
  31833.   { { echo "$as_me:$LINENO: error: conditional \"qnx_builtin\" was never defined.
  31834. Usually this means the macro was only invoked conditionally." >&5
  31835. echo "$as_me: error: conditional \"qnx_builtin\" was never defined.
  31836. Usually this means the macro was only invoked conditionally." >&2;}
  31837.    { (exit 1); exit 1; }; }
  31838. fi
  31839. if test -z "${qt_plugin_TRUE}" && test -z "${qt_plugin_FALSE}"; then
  31840.   { { echo "$as_me:$LINENO: error: conditional \"qt_plugin\" was never defined.
  31841. Usually this means the macro was only invoked conditionally." >&5
  31842. echo "$as_me: error: conditional \"qt_plugin\" was never defined.
  31843. Usually this means the macro was only invoked conditionally." >&2;}
  31844.    { (exit 1); exit 1; }; }
  31845. fi
  31846. if test -z "${qt_builtin_TRUE}" && test -z "${qt_builtin_FALSE}"; then
  31847.   { { echo "$as_me:$LINENO: error: conditional \"qt_builtin\" was never defined.
  31848. Usually this means the macro was only invoked conditionally." >&5
  31849. echo "$as_me: error: conditional \"qt_builtin\" was never defined.
  31850. Usually this means the macro was only invoked conditionally." >&2;}
  31851.    { (exit 1); exit 1; }; }
  31852. fi
  31853. if test -z "${skins_plugin_TRUE}" && test -z "${skins_plugin_FALSE}"; then
  31854.   { { echo "$as_me:$LINENO: error: conditional \"skins_plugin\" was never defined.
  31855. Usually this means the macro was only invoked conditionally." >&5
  31856. echo "$as_me: error: conditional \"skins_plugin\" was never defined.
  31857. Usually this means the macro was only invoked conditionally." >&2;}
  31858.    { (exit 1); exit 1; }; }
  31859. fi
  31860. if test -z "${skins_builtin_TRUE}" && test -z "${skins_builtin_FALSE}"; then
  31861.   { { echo "$as_me:$LINENO: error: conditional \"skins_builtin\" was never defined.
  31862. Usually this means the macro was only invoked conditionally." >&5
  31863. echo "$as_me: error: conditional \"skins_builtin\" was never defined.
  31864. Usually this means the macro was only invoked conditionally." >&2;}
  31865.    { (exit 1); exit 1; }; }
  31866. fi
  31867. if test -z "${win32_plugin_TRUE}" && test -z "${win32_plugin_FALSE}"; then
  31868.   { { echo "$as_me:$LINENO: error: conditional \"win32_plugin\" was never defined.
  31869. Usually this means the macro was only invoked conditionally." >&5
  31870. echo "$as_me: error: conditional \"win32_plugin\" was never defined.
  31871. Usually this means the macro was only invoked conditionally." >&2;}
  31872.    { (exit 1); exit 1; }; }
  31873. fi
  31874. if test -z "${win32_builtin_TRUE}" && test -z "${win32_builtin_FALSE}"; then
  31875.   { { echo "$as_me:$LINENO: error: conditional \"win32_builtin\" was never defined.
  31876. Usually this means the macro was only invoked conditionally." >&5
  31877. echo "$as_me: error: conditional \"win32_builtin\" was never defined.
  31878. Usually this means the macro was only invoked conditionally." >&2;}
  31879.    { (exit 1); exit 1; }; }
  31880. fi
  31881. if test -z "${wxwindows_plugin_TRUE}" && test -z "${wxwindows_plugin_FALSE}"; then
  31882.   { { echo "$as_me:$LINENO: error: conditional \"wxwindows_plugin\" was never defined.
  31883. Usually this means the macro was only invoked conditionally." >&5
  31884. echo "$as_me: error: conditional \"wxwindows_plugin\" was never defined.
  31885. Usually this means the macro was only invoked conditionally." >&2;}
  31886.    { (exit 1); exit 1; }; }
  31887. fi
  31888. if test -z "${wxwindows_builtin_TRUE}" && test -z "${wxwindows_builtin_FALSE}"; then
  31889.   { { echo "$as_me:$LINENO: error: conditional \"wxwindows_builtin\" was never defined.
  31890. Usually this means the macro was only invoked conditionally." >&5
  31891. echo "$as_me: error: conditional \"wxwindows_builtin\" was never defined.
  31892. Usually this means the macro was only invoked conditionally." >&2;}
  31893.    { (exit 1); exit 1; }; }
  31894. fi
  31895. if test -z "${gtk_main_plugin_TRUE}" && test -z "${gtk_main_plugin_FALSE}"; then
  31896.   { { echo "$as_me:$LINENO: error: conditional \"gtk_main_plugin\" was never defined.
  31897. Usually this means the macro was only invoked conditionally." >&5
  31898. echo "$as_me: error: conditional \"gtk_main_plugin\" was never defined.
  31899. Usually this means the macro was only invoked conditionally." >&2;}
  31900.    { (exit 1); exit 1; }; }
  31901. fi
  31902. if test -z "${gtk_main_builtin_TRUE}" && test -z "${gtk_main_builtin_FALSE}"; then
  31903.   { { echo "$as_me:$LINENO: error: conditional \"gtk_main_builtin\" was never defined.
  31904. Usually this means the macro was only invoked conditionally." >&5
  31905. echo "$as_me: error: conditional \"gtk_main_builtin\" was never defined.
  31906. Usually this means the macro was only invoked conditionally." >&2;}
  31907.    { (exit 1); exit 1; }; }
  31908. fi
  31909. if test -z "${gnome_main_plugin_TRUE}" && test -z "${gnome_main_plugin_FALSE}"; then
  31910.   { { echo "$as_me:$LINENO: error: conditional \"gnome_main_plugin\" was never defined.
  31911. Usually this means the macro was only invoked conditionally." >&5
  31912. echo "$as_me: error: conditional \"gnome_main_plugin\" was never defined.
  31913. Usually this means the macro was only invoked conditionally." >&2;}
  31914.    { (exit 1); exit 1; }; }
  31915. fi
  31916. if test -z "${gnome_main_builtin_TRUE}" && test -z "${gnome_main_builtin_FALSE}"; then
  31917.   { { echo "$as_me:$LINENO: error: conditional \"gnome_main_builtin\" was never defined.
  31918. Usually this means the macro was only invoked conditionally." >&5
  31919. echo "$as_me: error: conditional \"gnome_main_builtin\" was never defined.
  31920. Usually this means the macro was only invoked conditionally." >&2;}
  31921.    { (exit 1); exit 1; }; }
  31922. fi
  31923. if test -z "${gtk2_main_plugin_TRUE}" && test -z "${gtk2_main_plugin_FALSE}"; then
  31924.   { { echo "$as_me:$LINENO: error: conditional \"gtk2_main_plugin\" was never defined.
  31925. Usually this means the macro was only invoked conditionally." >&5
  31926. echo "$as_me: error: conditional \"gtk2_main_plugin\" was never defined.
  31927. Usually this means the macro was only invoked conditionally." >&2;}
  31928.    { (exit 1); exit 1; }; }
  31929. fi
  31930. if test -z "${gtk2_main_builtin_TRUE}" && test -z "${gtk2_main_builtin_FALSE}"; then
  31931.   { { echo "$as_me:$LINENO: error: conditional \"gtk2_main_builtin\" was never defined.
  31932. Usually this means the macro was only invoked conditionally." >&5
  31933. echo "$as_me: error: conditional \"gtk2_main_builtin\" was never defined.
  31934. Usually this means the macro was only invoked conditionally." >&2;}
  31935.    { (exit 1); exit 1; }; }
  31936. fi
  31937. if test -z "${gnome2_main_plugin_TRUE}" && test -z "${gnome2_main_plugin_FALSE}"; then
  31938.   { { echo "$as_me:$LINENO: error: conditional \"gnome2_main_plugin\" was never defined.
  31939. Usually this means the macro was only invoked conditionally." >&5
  31940. echo "$as_me: error: conditional \"gnome2_main_plugin\" was never defined.
  31941. Usually this means the macro was only invoked conditionally." >&2;}
  31942.    { (exit 1); exit 1; }; }
  31943. fi
  31944. if test -z "${gnome2_main_builtin_TRUE}" && test -z "${gnome2_main_builtin_FALSE}"; then
  31945.   { { echo "$as_me:$LINENO: error: conditional \"gnome2_main_builtin\" was never defined.
  31946. Usually this means the macro was only invoked conditionally." >&5
  31947. echo "$as_me: error: conditional \"gnome2_main_builtin\" was never defined.
  31948. Usually this means the macro was only invoked conditionally." >&2;}
  31949.    { (exit 1); exit 1; }; }
  31950. fi
  31951. if test -z "${sap_plugin_TRUE}" && test -z "${sap_plugin_FALSE}"; then
  31952.   { { echo "$as_me:$LINENO: error: conditional \"sap_plugin\" was never defined.
  31953. Usually this means the macro was only invoked conditionally." >&5
  31954. echo "$as_me: error: conditional \"sap_plugin\" was never defined.
  31955. Usually this means the macro was only invoked conditionally." >&2;}
  31956.    { (exit 1); exit 1; }; }
  31957. fi
  31958. if test -z "${sap_builtin_TRUE}" && test -z "${sap_builtin_FALSE}"; then
  31959.   { { echo "$as_me:$LINENO: error: conditional \"sap_builtin\" was never defined.
  31960. Usually this means the macro was only invoked conditionally." >&5
  31961. echo "$as_me: error: conditional \"sap_builtin\" was never defined.
  31962. Usually this means the macro was only invoked conditionally." >&2;}
  31963.    { (exit 1); exit 1; }; }
  31964. fi
  31965. if test -z "${screensaver_plugin_TRUE}" && test -z "${screensaver_plugin_FALSE}"; then
  31966.   { { echo "$as_me:$LINENO: error: conditional \"screensaver_plugin\" was never defined.
  31967. Usually this means the macro was only invoked conditionally." >&5
  31968. echo "$as_me: error: conditional \"screensaver_plugin\" was never defined.
  31969. Usually this means the macro was only invoked conditionally." >&2;}
  31970.    { (exit 1); exit 1; }; }
  31971. fi
  31972. if test -z "${screensaver_builtin_TRUE}" && test -z "${screensaver_builtin_FALSE}"; then
  31973.   { { echo "$as_me:$LINENO: error: conditional \"screensaver_builtin\" was never defined.
  31974. Usually this means the macro was only invoked conditionally." >&5
  31975. echo "$as_me: error: conditional \"screensaver_builtin\" was never defined.
  31976. Usually this means the macro was only invoked conditionally." >&2;}
  31977.    { (exit 1); exit 1; }; }
  31978. fi
  31979. if test -z "${qte_main_plugin_TRUE}" && test -z "${qte_main_plugin_FALSE}"; then
  31980.   { { echo "$as_me:$LINENO: error: conditional \"qte_main_plugin\" was never defined.
  31981. Usually this means the macro was only invoked conditionally." >&5
  31982. echo "$as_me: error: conditional \"qte_main_plugin\" was never defined.
  31983. Usually this means the macro was only invoked conditionally." >&2;}
  31984.    { (exit 1); exit 1; }; }
  31985. fi
  31986. if test -z "${qte_main_builtin_TRUE}" && test -z "${qte_main_builtin_FALSE}"; then
  31987.   { { echo "$as_me:$LINENO: error: conditional \"qte_main_builtin\" was never defined.
  31988. Usually this means the macro was only invoked conditionally." >&5
  31989. echo "$as_me: error: conditional \"qte_main_builtin\" was never defined.
  31990. Usually this means the macro was only invoked conditionally." >&2;}
  31991.    { (exit 1); exit 1; }; }
  31992. fi
  31993. if test -z "${httpd_plugin_TRUE}" && test -z "${httpd_plugin_FALSE}"; then
  31994.   { { echo "$as_me:$LINENO: error: conditional \"httpd_plugin\" was never defined.
  31995. Usually this means the macro was only invoked conditionally." >&5
  31996. echo "$as_me: error: conditional \"httpd_plugin\" was never defined.
  31997. Usually this means the macro was only invoked conditionally." >&2;}
  31998.    { (exit 1); exit 1; }; }
  31999. fi
  32000. if test -z "${httpd_builtin_TRUE}" && test -z "${httpd_builtin_FALSE}"; then
  32001.   { { echo "$as_me:$LINENO: error: conditional \"httpd_builtin\" was never defined.
  32002. Usually this means the macro was only invoked conditionally." >&5
  32003. echo "$as_me: error: conditional \"httpd_builtin\" was never defined.
  32004. Usually this means the macro was only invoked conditionally." >&2;}
  32005.    { (exit 1); exit 1; }; }
  32006. fi
  32007. if test -z "${dummy_plugin_TRUE}" && test -z "${dummy_plugin_FALSE}"; then
  32008.   { { echo "$as_me:$LINENO: error: conditional \"dummy_plugin\" was never defined.
  32009. Usually this means the macro was only invoked conditionally." >&5
  32010. echo "$as_me: error: conditional \"dummy_plugin\" was never defined.
  32011. Usually this means the macro was only invoked conditionally." >&2;}
  32012.    { (exit 1); exit 1; }; }
  32013. fi
  32014. if test -z "${dummy_builtin_TRUE}" && test -z "${dummy_builtin_FALSE}"; then
  32015.   { { echo "$as_me:$LINENO: error: conditional \"dummy_builtin\" was never defined.
  32016. Usually this means the macro was only invoked conditionally." >&5
  32017. echo "$as_me: error: conditional \"dummy_builtin\" was never defined.
  32018. Usually this means the macro was only invoked conditionally." >&2;}
  32019.    { (exit 1); exit 1; }; }
  32020. fi
  32021. if test -z "${logger_plugin_TRUE}" && test -z "${logger_plugin_FALSE}"; then
  32022.   { { echo "$as_me:$LINENO: error: conditional \"logger_plugin\" was never defined.
  32023. Usually this means the macro was only invoked conditionally." >&5
  32024. echo "$as_me: error: conditional \"logger_plugin\" was never defined.
  32025. Usually this means the macro was only invoked conditionally." >&2;}
  32026.    { (exit 1); exit 1; }; }
  32027. fi
  32028. if test -z "${logger_builtin_TRUE}" && test -z "${logger_builtin_FALSE}"; then
  32029.   { { echo "$as_me:$LINENO: error: conditional \"logger_builtin\" was never defined.
  32030. Usually this means the macro was only invoked conditionally." >&5
  32031. echo "$as_me: error: conditional \"logger_builtin\" was never defined.
  32032. Usually this means the macro was only invoked conditionally." >&2;}
  32033.    { (exit 1); exit 1; }; }
  32034. fi
  32035. if test -z "${memcpy_plugin_TRUE}" && test -z "${memcpy_plugin_FALSE}"; then
  32036.   { { echo "$as_me:$LINENO: error: conditional \"memcpy_plugin\" was never defined.
  32037. Usually this means the macro was only invoked conditionally." >&5
  32038. echo "$as_me: error: conditional \"memcpy_plugin\" was never defined.
  32039. Usually this means the macro was only invoked conditionally." >&2;}
  32040.    { (exit 1); exit 1; }; }
  32041. fi
  32042. if test -z "${memcpy_builtin_TRUE}" && test -z "${memcpy_builtin_FALSE}"; then
  32043.   { { echo "$as_me:$LINENO: error: conditional \"memcpy_builtin\" was never defined.
  32044. Usually this means the macro was only invoked conditionally." >&5
  32045. echo "$as_me: error: conditional \"memcpy_builtin\" was never defined.
  32046. Usually this means the macro was only invoked conditionally." >&2;}
  32047.    { (exit 1); exit 1; }; }
  32048. fi
  32049. if test -z "${memcpymmx_plugin_TRUE}" && test -z "${memcpymmx_plugin_FALSE}"; then
  32050.   { { echo "$as_me:$LINENO: error: conditional \"memcpymmx_plugin\" was never defined.
  32051. Usually this means the macro was only invoked conditionally." >&5
  32052. echo "$as_me: error: conditional \"memcpymmx_plugin\" was never defined.
  32053. Usually this means the macro was only invoked conditionally." >&2;}
  32054.    { (exit 1); exit 1; }; }
  32055. fi
  32056. if test -z "${memcpymmx_builtin_TRUE}" && test -z "${memcpymmx_builtin_FALSE}"; then
  32057.   { { echo "$as_me:$LINENO: error: conditional \"memcpymmx_builtin\" was never defined.
  32058. Usually this means the macro was only invoked conditionally." >&5
  32059. echo "$as_me: error: conditional \"memcpymmx_builtin\" was never defined.
  32060. Usually this means the macro was only invoked conditionally." >&2;}
  32061.    { (exit 1); exit 1; }; }
  32062. fi
  32063. if test -z "${memcpymmxext_plugin_TRUE}" && test -z "${memcpymmxext_plugin_FALSE}"; then
  32064.   { { echo "$as_me:$LINENO: error: conditional \"memcpymmxext_plugin\" was never defined.
  32065. Usually this means the macro was only invoked conditionally." >&5
  32066. echo "$as_me: error: conditional \"memcpymmxext_plugin\" was never defined.
  32067. Usually this means the macro was only invoked conditionally." >&2;}
  32068.    { (exit 1); exit 1; }; }
  32069. fi
  32070. if test -z "${memcpymmxext_builtin_TRUE}" && test -z "${memcpymmxext_builtin_FALSE}"; then
  32071.   { { echo "$as_me:$LINENO: error: conditional \"memcpymmxext_builtin\" was never defined.
  32072. Usually this means the macro was only invoked conditionally." >&5
  32073. echo "$as_me: error: conditional \"memcpymmxext_builtin\" was never defined.
  32074. Usually this means the macro was only invoked conditionally." >&2;}
  32075.    { (exit 1); exit 1; }; }
  32076. fi
  32077. if test -z "${memcpy3dn_plugin_TRUE}" && test -z "${memcpy3dn_plugin_FALSE}"; then
  32078.   { { echo "$as_me:$LINENO: error: conditional \"memcpy3dn_plugin\" was never defined.
  32079. Usually this means the macro was only invoked conditionally." >&5
  32080. echo "$as_me: error: conditional \"memcpy3dn_plugin\" was never defined.
  32081. Usually this means the macro was only invoked conditionally." >&2;}
  32082.    { (exit 1); exit 1; }; }
  32083. fi
  32084. if test -z "${memcpy3dn_builtin_TRUE}" && test -z "${memcpy3dn_builtin_FALSE}"; then
  32085.   { { echo "$as_me:$LINENO: error: conditional \"memcpy3dn_builtin\" was never defined.
  32086. Usually this means the macro was only invoked conditionally." >&5
  32087. echo "$as_me: error: conditional \"memcpy3dn_builtin\" was never defined.
  32088. Usually this means the macro was only invoked conditionally." >&2;}
  32089.    { (exit 1); exit 1; }; }
  32090. fi
  32091. if test -z "${memcpyaltivec_plugin_TRUE}" && test -z "${memcpyaltivec_plugin_FALSE}"; then
  32092.   { { echo "$as_me:$LINENO: error: conditional \"memcpyaltivec_plugin\" was never defined.
  32093. Usually this means the macro was only invoked conditionally." >&5
  32094. echo "$as_me: error: conditional \"memcpyaltivec_plugin\" was never defined.
  32095. Usually this means the macro was only invoked conditionally." >&2;}
  32096.    { (exit 1); exit 1; }; }
  32097. fi
  32098. if test -z "${memcpyaltivec_builtin_TRUE}" && test -z "${memcpyaltivec_builtin_FALSE}"; then
  32099.   { { echo "$as_me:$LINENO: error: conditional \"memcpyaltivec_builtin\" was never defined.
  32100. Usually this means the macro was only invoked conditionally." >&5
  32101. echo "$as_me: error: conditional \"memcpyaltivec_builtin\" was never defined.
  32102. Usually this means the macro was only invoked conditionally." >&2;}
  32103.    { (exit 1); exit 1; }; }
  32104. fi
  32105. if test -z "${ipv4_plugin_TRUE}" && test -z "${ipv4_plugin_FALSE}"; then
  32106.   { { echo "$as_me:$LINENO: error: conditional \"ipv4_plugin\" was never defined.
  32107. Usually this means the macro was only invoked conditionally." >&5
  32108. echo "$as_me: error: conditional \"ipv4_plugin\" was never defined.
  32109. Usually this means the macro was only invoked conditionally." >&2;}
  32110.    { (exit 1); exit 1; }; }
  32111. fi
  32112. if test -z "${ipv4_builtin_TRUE}" && test -z "${ipv4_builtin_FALSE}"; then
  32113.   { { echo "$as_me:$LINENO: error: conditional \"ipv4_builtin\" was never defined.
  32114. Usually this means the macro was only invoked conditionally." >&5
  32115. echo "$as_me: error: conditional \"ipv4_builtin\" was never defined.
  32116. Usually this means the macro was only invoked conditionally." >&2;}
  32117.    { (exit 1); exit 1; }; }
  32118. fi
  32119. if test -z "${ipv6_plugin_TRUE}" && test -z "${ipv6_plugin_FALSE}"; then
  32120.   { { echo "$as_me:$LINENO: error: conditional \"ipv6_plugin\" was never defined.
  32121. Usually this means the macro was only invoked conditionally." >&5
  32122. echo "$as_me: error: conditional \"ipv6_plugin\" was never defined.
  32123. Usually this means the macro was only invoked conditionally." >&2;}
  32124.    { (exit 1); exit 1; }; }
  32125. fi
  32126. if test -z "${ipv6_builtin_TRUE}" && test -z "${ipv6_builtin_FALSE}"; then
  32127.   { { echo "$as_me:$LINENO: error: conditional \"ipv6_builtin\" was never defined.
  32128. Usually this means the macro was only invoked conditionally." >&5
  32129. echo "$as_me: error: conditional \"ipv6_builtin\" was never defined.
  32130. Usually this means the macro was only invoked conditionally." >&2;}
  32131.    { (exit 1); exit 1; }; }
  32132. fi
  32133. if test -z "${test1_plugin_TRUE}" && test -z "${test1_plugin_FALSE}"; then
  32134.   { { echo "$as_me:$LINENO: error: conditional \"test1_plugin\" was never defined.
  32135. Usually this means the macro was only invoked conditionally." >&5
  32136. echo "$as_me: error: conditional \"test1_plugin\" was never defined.
  32137. Usually this means the macro was only invoked conditionally." >&2;}
  32138.    { (exit 1); exit 1; }; }
  32139. fi
  32140. if test -z "${test1_builtin_TRUE}" && test -z "${test1_builtin_FALSE}"; then
  32141.   { { echo "$as_me:$LINENO: error: conditional \"test1_builtin\" was never defined.
  32142. Usually this means the macro was only invoked conditionally." >&5
  32143. echo "$as_me: error: conditional \"test1_builtin\" was never defined.
  32144. Usually this means the macro was only invoked conditionally." >&2;}
  32145.    { (exit 1); exit 1; }; }
  32146. fi
  32147. if test -z "${test2_plugin_TRUE}" && test -z "${test2_plugin_FALSE}"; then
  32148.   { { echo "$as_me:$LINENO: error: conditional \"test2_plugin\" was never defined.
  32149. Usually this means the macro was only invoked conditionally." >&5
  32150. echo "$as_me: error: conditional \"test2_plugin\" was never defined.
  32151. Usually this means the macro was only invoked conditionally." >&2;}
  32152.    { (exit 1); exit 1; }; }
  32153. fi
  32154. if test -z "${test2_builtin_TRUE}" && test -z "${test2_builtin_FALSE}"; then
  32155.   { { echo "$as_me:$LINENO: error: conditional \"test2_builtin\" was never defined.
  32156. Usually this means the macro was only invoked conditionally." >&5
  32157. echo "$as_me: error: conditional \"test2_builtin\" was never defined.
  32158. Usually this means the macro was only invoked conditionally." >&2;}
  32159.    { (exit 1); exit 1; }; }
  32160. fi
  32161. if test -z "${test3_plugin_TRUE}" && test -z "${test3_plugin_FALSE}"; then
  32162.   { { echo "$as_me:$LINENO: error: conditional \"test3_plugin\" was never defined.
  32163. Usually this means the macro was only invoked conditionally." >&5
  32164. echo "$as_me: error: conditional \"test3_plugin\" was never defined.
  32165. Usually this means the macro was only invoked conditionally." >&2;}
  32166.    { (exit 1); exit 1; }; }
  32167. fi
  32168. if test -z "${test3_builtin_TRUE}" && test -z "${test3_builtin_FALSE}"; then
  32169.   { { echo "$as_me:$LINENO: error: conditional \"test3_builtin\" was never defined.
  32170. Usually this means the macro was only invoked conditionally." >&5
  32171. echo "$as_me: error: conditional \"test3_builtin\" was never defined.
  32172. Usually this means the macro was only invoked conditionally." >&2;}
  32173.    { (exit 1); exit 1; }; }
  32174. fi
  32175. if test -z "${test4_plugin_TRUE}" && test -z "${test4_plugin_FALSE}"; then
  32176.   { { echo "$as_me:$LINENO: error: conditional \"test4_plugin\" was never defined.
  32177. Usually this means the macro was only invoked conditionally." >&5
  32178. echo "$as_me: error: conditional \"test4_plugin\" was never defined.
  32179. Usually this means the macro was only invoked conditionally." >&2;}
  32180.    { (exit 1); exit 1; }; }
  32181. fi
  32182. if test -z "${test4_builtin_TRUE}" && test -z "${test4_builtin_FALSE}"; then
  32183.   { { echo "$as_me:$LINENO: error: conditional \"test4_builtin\" was never defined.
  32184. Usually this means the macro was only invoked conditionally." >&5
  32185. echo "$as_me: error: conditional \"test4_builtin\" was never defined.
  32186. Usually this means the macro was only invoked conditionally." >&2;}
  32187.    { (exit 1); exit 1; }; }
  32188. fi
  32189. if test -z "${mux_dummy_plugin_TRUE}" && test -z "${mux_dummy_plugin_FALSE}"; then
  32190.   { { echo "$as_me:$LINENO: error: conditional \"mux_dummy_plugin\" was never defined.
  32191. Usually this means the macro was only invoked conditionally." >&5
  32192. echo "$as_me: error: conditional \"mux_dummy_plugin\" was never defined.
  32193. Usually this means the macro was only invoked conditionally." >&2;}
  32194.    { (exit 1); exit 1; }; }
  32195. fi
  32196. if test -z "${mux_dummy_builtin_TRUE}" && test -z "${mux_dummy_builtin_FALSE}"; then
  32197.   { { echo "$as_me:$LINENO: error: conditional \"mux_dummy_builtin\" was never defined.
  32198. Usually this means the macro was only invoked conditionally." >&5
  32199. echo "$as_me: error: conditional \"mux_dummy_builtin\" was never defined.
  32200. Usually this means the macro was only invoked conditionally." >&2;}
  32201.    { (exit 1); exit 1; }; }
  32202. fi
  32203. if test -z "${mux_avi_plugin_TRUE}" && test -z "${mux_avi_plugin_FALSE}"; then
  32204.   { { echo "$as_me:$LINENO: error: conditional \"mux_avi_plugin\" was never defined.
  32205. Usually this means the macro was only invoked conditionally." >&5
  32206. echo "$as_me: error: conditional \"mux_avi_plugin\" was never defined.
  32207. Usually this means the macro was only invoked conditionally." >&2;}
  32208.    { (exit 1); exit 1; }; }
  32209. fi
  32210. if test -z "${mux_avi_builtin_TRUE}" && test -z "${mux_avi_builtin_FALSE}"; then
  32211.   { { echo "$as_me:$LINENO: error: conditional \"mux_avi_builtin\" was never defined.
  32212. Usually this means the macro was only invoked conditionally." >&5
  32213. echo "$as_me: error: conditional \"mux_avi_builtin\" was never defined.
  32214. Usually this means the macro was only invoked conditionally." >&2;}
  32215.    { (exit 1); exit 1; }; }
  32216. fi
  32217. if test -z "${mux_ogg_plugin_TRUE}" && test -z "${mux_ogg_plugin_FALSE}"; then
  32218.   { { echo "$as_me:$LINENO: error: conditional \"mux_ogg_plugin\" was never defined.
  32219. Usually this means the macro was only invoked conditionally." >&5
  32220. echo "$as_me: error: conditional \"mux_ogg_plugin\" was never defined.
  32221. Usually this means the macro was only invoked conditionally." >&2;}
  32222.    { (exit 1); exit 1; }; }
  32223. fi
  32224. if test -z "${mux_ogg_builtin_TRUE}" && test -z "${mux_ogg_builtin_FALSE}"; then
  32225.   { { echo "$as_me:$LINENO: error: conditional \"mux_ogg_builtin\" was never defined.
  32226. Usually this means the macro was only invoked conditionally." >&5
  32227. echo "$as_me: error: conditional \"mux_ogg_builtin\" was never defined.
  32228. Usually this means the macro was only invoked conditionally." >&2;}
  32229.    { (exit 1); exit 1; }; }
  32230. fi
  32231. if test -z "${mux_ps_plugin_TRUE}" && test -z "${mux_ps_plugin_FALSE}"; then
  32232.   { { echo "$as_me:$LINENO: error: conditional \"mux_ps_plugin\" was never defined.
  32233. Usually this means the macro was only invoked conditionally." >&5
  32234. echo "$as_me: error: conditional \"mux_ps_plugin\" was never defined.
  32235. Usually this means the macro was only invoked conditionally." >&2;}
  32236.    { (exit 1); exit 1; }; }
  32237. fi
  32238. if test -z "${mux_ps_builtin_TRUE}" && test -z "${mux_ps_builtin_FALSE}"; then
  32239.   { { echo "$as_me:$LINENO: error: conditional \"mux_ps_builtin\" was never defined.
  32240. Usually this means the macro was only invoked conditionally." >&5
  32241. echo "$as_me: error: conditional \"mux_ps_builtin\" was never defined.
  32242. Usually this means the macro was only invoked conditionally." >&2;}
  32243.    { (exit 1); exit 1; }; }
  32244. fi
  32245. if test -z "${mux_ts_plugin_TRUE}" && test -z "${mux_ts_plugin_FALSE}"; then
  32246.   { { echo "$as_me:$LINENO: error: conditional \"mux_ts_plugin\" was never defined.
  32247. Usually this means the macro was only invoked conditionally." >&5
  32248. echo "$as_me: error: conditional \"mux_ts_plugin\" was never defined.
  32249. Usually this means the macro was only invoked conditionally." >&2;}
  32250.    { (exit 1); exit 1; }; }
  32251. fi
  32252. if test -z "${mux_ts_builtin_TRUE}" && test -z "${mux_ts_builtin_FALSE}"; then
  32253.   { { echo "$as_me:$LINENO: error: conditional \"mux_ts_builtin\" was never defined.
  32254. Usually this means the macro was only invoked conditionally." >&5
  32255. echo "$as_me: error: conditional \"mux_ts_builtin\" was never defined.
  32256. Usually this means the macro was only invoked conditionally." >&2;}
  32257.    { (exit 1); exit 1; }; }
  32258. fi
  32259. if test -z "${mux_ts_dvbpsi_plugin_TRUE}" && test -z "${mux_ts_dvbpsi_plugin_FALSE}"; then
  32260.   { { echo "$as_me:$LINENO: error: conditional \"mux_ts_dvbpsi_plugin\" was never defined.
  32261. Usually this means the macro was only invoked conditionally." >&5
  32262. echo "$as_me: error: conditional \"mux_ts_dvbpsi_plugin\" was never defined.
  32263. Usually this means the macro was only invoked conditionally." >&2;}
  32264.    { (exit 1); exit 1; }; }
  32265. fi
  32266. if test -z "${mux_ts_dvbpsi_builtin_TRUE}" && test -z "${mux_ts_dvbpsi_builtin_FALSE}"; then
  32267.   { { echo "$as_me:$LINENO: error: conditional \"mux_ts_dvbpsi_builtin\" was never defined.
  32268. Usually this means the macro was only invoked conditionally." >&5
  32269. echo "$as_me: error: conditional \"mux_ts_dvbpsi_builtin\" was never defined.
  32270. Usually this means the macro was only invoked conditionally." >&2;}
  32271.    { (exit 1); exit 1; }; }
  32272. fi
  32273. if test -z "${packetizer_copy_plugin_TRUE}" && test -z "${packetizer_copy_plugin_FALSE}"; then
  32274.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_copy_plugin\" was never defined.
  32275. Usually this means the macro was only invoked conditionally." >&5
  32276. echo "$as_me: error: conditional \"packetizer_copy_plugin\" was never defined.
  32277. Usually this means the macro was only invoked conditionally." >&2;}
  32278.    { (exit 1); exit 1; }; }
  32279. fi
  32280. if test -z "${packetizer_copy_builtin_TRUE}" && test -z "${packetizer_copy_builtin_FALSE}"; then
  32281.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_copy_builtin\" was never defined.
  32282. Usually this means the macro was only invoked conditionally." >&5
  32283. echo "$as_me: error: conditional \"packetizer_copy_builtin\" was never defined.
  32284. Usually this means the macro was only invoked conditionally." >&2;}
  32285.    { (exit 1); exit 1; }; }
  32286. fi
  32287. if test -z "${packetizer_a52_plugin_TRUE}" && test -z "${packetizer_a52_plugin_FALSE}"; then
  32288.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_a52_plugin\" was never defined.
  32289. Usually this means the macro was only invoked conditionally." >&5
  32290. echo "$as_me: error: conditional \"packetizer_a52_plugin\" was never defined.
  32291. Usually this means the macro was only invoked conditionally." >&2;}
  32292.    { (exit 1); exit 1; }; }
  32293. fi
  32294. if test -z "${packetizer_a52_builtin_TRUE}" && test -z "${packetizer_a52_builtin_FALSE}"; then
  32295.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_a52_builtin\" was never defined.
  32296. Usually this means the macro was only invoked conditionally." >&5
  32297. echo "$as_me: error: conditional \"packetizer_a52_builtin\" was never defined.
  32298. Usually this means the macro was only invoked conditionally." >&2;}
  32299.    { (exit 1); exit 1; }; }
  32300. fi
  32301. if test -z "${packetizer_mpegaudio_plugin_TRUE}" && test -z "${packetizer_mpegaudio_plugin_FALSE}"; then
  32302.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpegaudio_plugin\" was never defined.
  32303. Usually this means the macro was only invoked conditionally." >&5
  32304. echo "$as_me: error: conditional \"packetizer_mpegaudio_plugin\" was never defined.
  32305. Usually this means the macro was only invoked conditionally." >&2;}
  32306.    { (exit 1); exit 1; }; }
  32307. fi
  32308. if test -z "${packetizer_mpegaudio_builtin_TRUE}" && test -z "${packetizer_mpegaudio_builtin_FALSE}"; then
  32309.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpegaudio_builtin\" was never defined.
  32310. Usually this means the macro was only invoked conditionally." >&5
  32311. echo "$as_me: error: conditional \"packetizer_mpegaudio_builtin\" was never defined.
  32312. Usually this means the macro was only invoked conditionally." >&2;}
  32313.    { (exit 1); exit 1; }; }
  32314. fi
  32315. if test -z "${packetizer_mpegvideo_plugin_TRUE}" && test -z "${packetizer_mpegvideo_plugin_FALSE}"; then
  32316.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpegvideo_plugin\" was never defined.
  32317. Usually this means the macro was only invoked conditionally." >&5
  32318. echo "$as_me: error: conditional \"packetizer_mpegvideo_plugin\" was never defined.
  32319. Usually this means the macro was only invoked conditionally." >&2;}
  32320.    { (exit 1); exit 1; }; }
  32321. fi
  32322. if test -z "${packetizer_mpegvideo_builtin_TRUE}" && test -z "${packetizer_mpegvideo_builtin_FALSE}"; then
  32323.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpegvideo_builtin\" was never defined.
  32324. Usually this means the macro was only invoked conditionally." >&5
  32325. echo "$as_me: error: conditional \"packetizer_mpegvideo_builtin\" was never defined.
  32326. Usually this means the macro was only invoked conditionally." >&2;}
  32327.    { (exit 1); exit 1; }; }
  32328. fi
  32329. if test -z "${packetizer_mpeg4video_plugin_TRUE}" && test -z "${packetizer_mpeg4video_plugin_FALSE}"; then
  32330.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpeg4video_plugin\" was never defined.
  32331. Usually this means the macro was only invoked conditionally." >&5
  32332. echo "$as_me: error: conditional \"packetizer_mpeg4video_plugin\" was never defined.
  32333. Usually this means the macro was only invoked conditionally." >&2;}
  32334.    { (exit 1); exit 1; }; }
  32335. fi
  32336. if test -z "${packetizer_mpeg4video_builtin_TRUE}" && test -z "${packetizer_mpeg4video_builtin_FALSE}"; then
  32337.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpeg4video_builtin\" was never defined.
  32338. Usually this means the macro was only invoked conditionally." >&5
  32339. echo "$as_me: error: conditional \"packetizer_mpeg4video_builtin\" was never defined.
  32340. Usually this means the macro was only invoked conditionally." >&2;}
  32341.    { (exit 1); exit 1; }; }
  32342. fi
  32343. if test -z "${packetizer_mpeg4audio_plugin_TRUE}" && test -z "${packetizer_mpeg4audio_plugin_FALSE}"; then
  32344.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpeg4audio_plugin\" was never defined.
  32345. Usually this means the macro was only invoked conditionally." >&5
  32346. echo "$as_me: error: conditional \"packetizer_mpeg4audio_plugin\" was never defined.
  32347. Usually this means the macro was only invoked conditionally." >&2;}
  32348.    { (exit 1); exit 1; }; }
  32349. fi
  32350. if test -z "${packetizer_mpeg4audio_builtin_TRUE}" && test -z "${packetizer_mpeg4audio_builtin_FALSE}"; then
  32351.   { { echo "$as_me:$LINENO: error: conditional \"packetizer_mpeg4audio_builtin\" was never defined.
  32352. Usually this means the macro was only invoked conditionally." >&5
  32353. echo "$as_me: error: conditional \"packetizer_mpeg4audio_builtin\" was never defined.
  32354. Usually this means the macro was only invoked conditionally." >&2;}
  32355.    { (exit 1); exit 1; }; }
  32356. fi
  32357. if test -z "${i420_rgb_plugin_TRUE}" && test -z "${i420_rgb_plugin_FALSE}"; then
  32358.   { { echo "$as_me:$LINENO: error: conditional \"i420_rgb_plugin\" was never defined.
  32359. Usually this means the macro was only invoked conditionally." >&5
  32360. echo "$as_me: error: conditional \"i420_rgb_plugin\" was never defined.
  32361. Usually this means the macro was only invoked conditionally." >&2;}
  32362.    { (exit 1); exit 1; }; }
  32363. fi
  32364. if test -z "${i420_rgb_builtin_TRUE}" && test -z "${i420_rgb_builtin_FALSE}"; then
  32365.   { { echo "$as_me:$LINENO: error: conditional \"i420_rgb_builtin\" was never defined.
  32366. Usually this means the macro was only invoked conditionally." >&5
  32367. echo "$as_me: error: conditional \"i420_rgb_builtin\" was never defined.
  32368. Usually this means the macro was only invoked conditionally." >&2;}
  32369.    { (exit 1); exit 1; }; }
  32370. fi
  32371. if test -z "${i420_rgb_mmx_plugin_TRUE}" && test -z "${i420_rgb_mmx_plugin_FALSE}"; then
  32372.   { { echo "$as_me:$LINENO: error: conditional \"i420_rgb_mmx_plugin\" was never defined.
  32373. Usually this means the macro was only invoked conditionally." >&5
  32374. echo "$as_me: error: conditional \"i420_rgb_mmx_plugin\" was never defined.
  32375. Usually this means the macro was only invoked conditionally." >&2;}
  32376.    { (exit 1); exit 1; }; }
  32377. fi
  32378. if test -z "${i420_rgb_mmx_builtin_TRUE}" && test -z "${i420_rgb_mmx_builtin_FALSE}"; then
  32379.   { { echo "$as_me:$LINENO: error: conditional \"i420_rgb_mmx_builtin\" was never defined.
  32380. Usually this means the macro was only invoked conditionally." >&5
  32381. echo "$as_me: error: conditional \"i420_rgb_mmx_builtin\" was never defined.
  32382. Usually this means the macro was only invoked conditionally." >&2;}
  32383.    { (exit 1); exit 1; }; }
  32384. fi
  32385. if test -z "${i420_yuy2_plugin_TRUE}" && test -z "${i420_yuy2_plugin_FALSE}"; then
  32386.   { { echo "$as_me:$LINENO: error: conditional \"i420_yuy2_plugin\" was never defined.
  32387. Usually this means the macro was only invoked conditionally." >&5
  32388. echo "$as_me: error: conditional \"i420_yuy2_plugin\" was never defined.
  32389. Usually this means the macro was only invoked conditionally." >&2;}
  32390.    { (exit 1); exit 1; }; }
  32391. fi
  32392. if test -z "${i420_yuy2_builtin_TRUE}" && test -z "${i420_yuy2_builtin_FALSE}"; then
  32393.   { { echo "$as_me:$LINENO: error: conditional \"i420_yuy2_builtin\" was never defined.
  32394. Usually this means the macro was only invoked conditionally." >&5
  32395. echo "$as_me: error: conditional \"i420_yuy2_builtin\" was never defined.
  32396. Usually this means the macro was only invoked conditionally." >&2;}
  32397.    { (exit 1); exit 1; }; }
  32398. fi
  32399. if test -z "${i420_yuy2_mmx_plugin_TRUE}" && test -z "${i420_yuy2_mmx_plugin_FALSE}"; then
  32400.   { { echo "$as_me:$LINENO: error: conditional \"i420_yuy2_mmx_plugin\" was never defined.
  32401. Usually this means the macro was only invoked conditionally." >&5
  32402. echo "$as_me: error: conditional \"i420_yuy2_mmx_plugin\" was never defined.
  32403. Usually this means the macro was only invoked conditionally." >&2;}
  32404.    { (exit 1); exit 1; }; }
  32405. fi
  32406. if test -z "${i420_yuy2_mmx_builtin_TRUE}" && test -z "${i420_yuy2_mmx_builtin_FALSE}"; then
  32407.   { { echo "$as_me:$LINENO: error: conditional \"i420_yuy2_mmx_builtin\" was never defined.
  32408. Usually this means the macro was only invoked conditionally." >&5
  32409. echo "$as_me: error: conditional \"i420_yuy2_mmx_builtin\" was never defined.
  32410. Usually this means the macro was only invoked conditionally." >&2;}
  32411.    { (exit 1); exit 1; }; }
  32412. fi
  32413. if test -z "${i422_yuy2_plugin_TRUE}" && test -z "${i422_yuy2_plugin_FALSE}"; then
  32414.   { { echo "$as_me:$LINENO: error: conditional \"i422_yuy2_plugin\" was never defined.
  32415. Usually this means the macro was only invoked conditionally." >&5
  32416. echo "$as_me: error: conditional \"i422_yuy2_plugin\" was never defined.
  32417. Usually this means the macro was only invoked conditionally." >&2;}
  32418.    { (exit 1); exit 1; }; }
  32419. fi
  32420. if test -z "${i422_yuy2_builtin_TRUE}" && test -z "${i422_yuy2_builtin_FALSE}"; then
  32421.   { { echo "$as_me:$LINENO: error: conditional \"i422_yuy2_builtin\" was never defined.
  32422. Usually this means the macro was only invoked conditionally." >&5
  32423. echo "$as_me: error: conditional \"i422_yuy2_builtin\" was never defined.
  32424. Usually this means the macro was only invoked conditionally." >&2;}
  32425.    { (exit 1); exit 1; }; }
  32426. fi
  32427. if test -z "${i422_yuy2_mmx_plugin_TRUE}" && test -z "${i422_yuy2_mmx_plugin_FALSE}"; then
  32428.   { { echo "$as_me:$LINENO: error: conditional \"i422_yuy2_mmx_plugin\" was never defined.
  32429. Usually this means the macro was only invoked conditionally." >&5
  32430. echo "$as_me: error: conditional \"i422_yuy2_mmx_plugin\" was never defined.
  32431. Usually this means the macro was only invoked conditionally." >&2;}
  32432.    { (exit 1); exit 1; }; }
  32433. fi
  32434. if test -z "${i422_yuy2_mmx_builtin_TRUE}" && test -z "${i422_yuy2_mmx_builtin_FALSE}"; then
  32435.   { { echo "$as_me:$LINENO: error: conditional \"i422_yuy2_mmx_builtin\" was never defined.
  32436. Usually this means the macro was only invoked conditionally." >&5
  32437. echo "$as_me: error: conditional \"i422_yuy2_mmx_builtin\" was never defined.
  32438. Usually this means the macro was only invoked conditionally." >&2;}
  32439.    { (exit 1); exit 1; }; }
  32440. fi
  32441. if test -z "${i420_ymga_plugin_TRUE}" && test -z "${i420_ymga_plugin_FALSE}"; then
  32442.   { { echo "$as_me:$LINENO: error: conditional \"i420_ymga_plugin\" was never defined.
  32443. Usually this means the macro was only invoked conditionally." >&5
  32444. echo "$as_me: error: conditional \"i420_ymga_plugin\" was never defined.
  32445. Usually this means the macro was only invoked conditionally." >&2;}
  32446.    { (exit 1); exit 1; }; }
  32447. fi
  32448. if test -z "${i420_ymga_builtin_TRUE}" && test -z "${i420_ymga_builtin_FALSE}"; then
  32449.   { { echo "$as_me:$LINENO: error: conditional \"i420_ymga_builtin\" was never defined.
  32450. Usually this means the macro was only invoked conditionally." >&5
  32451. echo "$as_me: error: conditional \"i420_ymga_builtin\" was never defined.
  32452. Usually this means the macro was only invoked conditionally." >&2;}
  32453.    { (exit 1); exit 1; }; }
  32454. fi
  32455. if test -z "${i420_ymga_mmx_plugin_TRUE}" && test -z "${i420_ymga_mmx_plugin_FALSE}"; then
  32456.   { { echo "$as_me:$LINENO: error: conditional \"i420_ymga_mmx_plugin\" was never defined.
  32457. Usually this means the macro was only invoked conditionally." >&5
  32458. echo "$as_me: error: conditional \"i420_ymga_mmx_plugin\" was never defined.
  32459. Usually this means the macro was only invoked conditionally." >&2;}
  32460.    { (exit 1); exit 1; }; }
  32461. fi
  32462. if test -z "${i420_ymga_mmx_builtin_TRUE}" && test -z "${i420_ymga_mmx_builtin_FALSE}"; then
  32463.   { { echo "$as_me:$LINENO: error: conditional \"i420_ymga_mmx_builtin\" was never defined.
  32464. Usually this means the macro was only invoked conditionally." >&5
  32465. echo "$as_me: error: conditional \"i420_ymga_mmx_builtin\" was never defined.
  32466. Usually this means the macro was only invoked conditionally." >&2;}
  32467.    { (exit 1); exit 1; }; }
  32468. fi
  32469. if test -z "${transform_plugin_TRUE}" && test -z "${transform_plugin_FALSE}"; then
  32470.   { { echo "$as_me:$LINENO: error: conditional \"transform_plugin\" was never defined.
  32471. Usually this means the macro was only invoked conditionally." >&5
  32472. echo "$as_me: error: conditional \"transform_plugin\" was never defined.
  32473. Usually this means the macro was only invoked conditionally." >&2;}
  32474.    { (exit 1); exit 1; }; }
  32475. fi
  32476. if test -z "${transform_builtin_TRUE}" && test -z "${transform_builtin_FALSE}"; then
  32477.   { { echo "$as_me:$LINENO: error: conditional \"transform_builtin\" was never defined.
  32478. Usually this means the macro was only invoked conditionally." >&5
  32479. echo "$as_me: error: conditional \"transform_builtin\" was never defined.
  32480. Usually this means the macro was only invoked conditionally." >&2;}
  32481.    { (exit 1); exit 1; }; }
  32482. fi
  32483. if test -z "${invert_plugin_TRUE}" && test -z "${invert_plugin_FALSE}"; then
  32484.   { { echo "$as_me:$LINENO: error: conditional \"invert_plugin\" was never defined.
  32485. Usually this means the macro was only invoked conditionally." >&5
  32486. echo "$as_me: error: conditional \"invert_plugin\" was never defined.
  32487. Usually this means the macro was only invoked conditionally." >&2;}
  32488.    { (exit 1); exit 1; }; }
  32489. fi
  32490. if test -z "${invert_builtin_TRUE}" && test -z "${invert_builtin_FALSE}"; then
  32491.   { { echo "$as_me:$LINENO: error: conditional \"invert_builtin\" was never defined.
  32492. Usually this means the macro was only invoked conditionally." >&5
  32493. echo "$as_me: error: conditional \"invert_builtin\" was never defined.
  32494. Usually this means the macro was only invoked conditionally." >&2;}
  32495.    { (exit 1); exit 1; }; }
  32496. fi
  32497. if test -z "${adjust_plugin_TRUE}" && test -z "${adjust_plugin_FALSE}"; then
  32498.   { { echo "$as_me:$LINENO: error: conditional \"adjust_plugin\" was never defined.
  32499. Usually this means the macro was only invoked conditionally." >&5
  32500. echo "$as_me: error: conditional \"adjust_plugin\" was never defined.
  32501. Usually this means the macro was only invoked conditionally." >&2;}
  32502.    { (exit 1); exit 1; }; }
  32503. fi
  32504. if test -z "${adjust_builtin_TRUE}" && test -z "${adjust_builtin_FALSE}"; then
  32505.   { { echo "$as_me:$LINENO: error: conditional \"adjust_builtin\" was never defined.
  32506. Usually this means the macro was only invoked conditionally." >&5
  32507. echo "$as_me: error: conditional \"adjust_builtin\" was never defined.
  32508. Usually this means the macro was only invoked conditionally." >&2;}
  32509.    { (exit 1); exit 1; }; }
  32510. fi
  32511. if test -z "${distort_plugin_TRUE}" && test -z "${distort_plugin_FALSE}"; then
  32512.   { { echo "$as_me:$LINENO: error: conditional \"distort_plugin\" was never defined.
  32513. Usually this means the macro was only invoked conditionally." >&5
  32514. echo "$as_me: error: conditional \"distort_plugin\" was never defined.
  32515. Usually this means the macro was only invoked conditionally." >&2;}
  32516.    { (exit 1); exit 1; }; }
  32517. fi
  32518. if test -z "${distort_builtin_TRUE}" && test -z "${distort_builtin_FALSE}"; then
  32519.   { { echo "$as_me:$LINENO: error: conditional \"distort_builtin\" was never defined.
  32520. Usually this means the macro was only invoked conditionally." >&5
  32521. echo "$as_me: error: conditional \"distort_builtin\" was never defined.
  32522. Usually this means the macro was only invoked conditionally." >&2;}
  32523.    { (exit 1); exit 1; }; }
  32524. fi
  32525. if test -z "${wall_plugin_TRUE}" && test -z "${wall_plugin_FALSE}"; then
  32526.   { { echo "$as_me:$LINENO: error: conditional \"wall_plugin\" was never defined.
  32527. Usually this means the macro was only invoked conditionally." >&5
  32528. echo "$as_me: error: conditional \"wall_plugin\" was never defined.
  32529. Usually this means the macro was only invoked conditionally." >&2;}
  32530.    { (exit 1); exit 1; }; }
  32531. fi
  32532. if test -z "${wall_builtin_TRUE}" && test -z "${wall_builtin_FALSE}"; then
  32533.   { { echo "$as_me:$LINENO: error: conditional \"wall_builtin\" was never defined.
  32534. Usually this means the macro was only invoked conditionally." >&5
  32535. echo "$as_me: error: conditional \"wall_builtin\" was never defined.
  32536. Usually this means the macro was only invoked conditionally." >&2;}
  32537.    { (exit 1); exit 1; }; }
  32538. fi
  32539. if test -z "${clone_plugin_TRUE}" && test -z "${clone_plugin_FALSE}"; then
  32540.   { { echo "$as_me:$LINENO: error: conditional \"clone_plugin\" was never defined.
  32541. Usually this means the macro was only invoked conditionally." >&5
  32542. echo "$as_me: error: conditional \"clone_plugin\" was never defined.
  32543. Usually this means the macro was only invoked conditionally." >&2;}
  32544.    { (exit 1); exit 1; }; }
  32545. fi
  32546. if test -z "${clone_builtin_TRUE}" && test -z "${clone_builtin_FALSE}"; then
  32547.   { { echo "$as_me:$LINENO: error: conditional \"clone_builtin\" was never defined.
  32548. Usually this means the macro was only invoked conditionally." >&5
  32549. echo "$as_me: error: conditional \"clone_builtin\" was never defined.
  32550. Usually this means the macro was only invoked conditionally." >&2;}
  32551.    { (exit 1); exit 1; }; }
  32552. fi
  32553. if test -z "${crop_plugin_TRUE}" && test -z "${crop_plugin_FALSE}"; then
  32554.   { { echo "$as_me:$LINENO: error: conditional \"crop_plugin\" was never defined.
  32555. Usually this means the macro was only invoked conditionally." >&5
  32556. echo "$as_me: error: conditional \"crop_plugin\" was never defined.
  32557. Usually this means the macro was only invoked conditionally." >&2;}
  32558.    { (exit 1); exit 1; }; }
  32559. fi
  32560. if test -z "${crop_builtin_TRUE}" && test -z "${crop_builtin_FALSE}"; then
  32561.   { { echo "$as_me:$LINENO: error: conditional \"crop_builtin\" was never defined.
  32562. Usually this means the macro was only invoked conditionally." >&5
  32563. echo "$as_me: error: conditional \"crop_builtin\" was never defined.
  32564. Usually this means the macro was only invoked conditionally." >&2;}
  32565.    { (exit 1); exit 1; }; }
  32566. fi
  32567. if test -z "${motionblur_plugin_TRUE}" && test -z "${motionblur_plugin_FALSE}"; then
  32568.   { { echo "$as_me:$LINENO: error: conditional \"motionblur_plugin\" was never defined.
  32569. Usually this means the macro was only invoked conditionally." >&5
  32570. echo "$as_me: error: conditional \"motionblur_plugin\" was never defined.
  32571. Usually this means the macro was only invoked conditionally." >&2;}
  32572.    { (exit 1); exit 1; }; }
  32573. fi
  32574. if test -z "${motionblur_builtin_TRUE}" && test -z "${motionblur_builtin_FALSE}"; then
  32575.   { { echo "$as_me:$LINENO: error: conditional \"motionblur_builtin\" was never defined.
  32576. Usually this means the macro was only invoked conditionally." >&5
  32577. echo "$as_me: error: conditional \"motionblur_builtin\" was never defined.
  32578. Usually this means the macro was only invoked conditionally." >&2;}
  32579.    { (exit 1); exit 1; }; }
  32580. fi
  32581. if test -z "${osdtext_plugin_TRUE}" && test -z "${osdtext_plugin_FALSE}"; then
  32582.   { { echo "$as_me:$LINENO: error: conditional \"osdtext_plugin\" was never defined.
  32583. Usually this means the macro was only invoked conditionally." >&5
  32584. echo "$as_me: error: conditional \"osdtext_plugin\" was never defined.
  32585. Usually this means the macro was only invoked conditionally." >&2;}
  32586.    { (exit 1); exit 1; }; }
  32587. fi
  32588. if test -z "${osdtext_builtin_TRUE}" && test -z "${osdtext_builtin_FALSE}"; then
  32589.   { { echo "$as_me:$LINENO: error: conditional \"osdtext_builtin\" was never defined.
  32590. Usually this means the macro was only invoked conditionally." >&5
  32591. echo "$as_me: error: conditional \"osdtext_builtin\" was never defined.
  32592. Usually this means the macro was only invoked conditionally." >&2;}
  32593.    { (exit 1); exit 1; }; }
  32594. fi
  32595. if test -z "${deinterlace_plugin_TRUE}" && test -z "${deinterlace_plugin_FALSE}"; then
  32596.   { { echo "$as_me:$LINENO: error: conditional \"deinterlace_plugin\" was never defined.
  32597. Usually this means the macro was only invoked conditionally." >&5
  32598. echo "$as_me: error: conditional \"deinterlace_plugin\" was never defined.
  32599. Usually this means the macro was only invoked conditionally." >&2;}
  32600.    { (exit 1); exit 1; }; }
  32601. fi
  32602. if test -z "${deinterlace_builtin_TRUE}" && test -z "${deinterlace_builtin_FALSE}"; then
  32603.   { { echo "$as_me:$LINENO: error: conditional \"deinterlace_builtin\" was never defined.
  32604. Usually this means the macro was only invoked conditionally." >&5
  32605. echo "$as_me: error: conditional \"deinterlace_builtin\" was never defined.
  32606. Usually this means the macro was only invoked conditionally." >&2;}
  32607.    { (exit 1); exit 1; }; }
  32608. fi
  32609. if test -z "${aa_plugin_TRUE}" && test -z "${aa_plugin_FALSE}"; then
  32610.   { { echo "$as_me:$LINENO: error: conditional \"aa_plugin\" was never defined.
  32611. Usually this means the macro was only invoked conditionally." >&5
  32612. echo "$as_me: error: conditional \"aa_plugin\" was never defined.
  32613. Usually this means the macro was only invoked conditionally." >&2;}
  32614.    { (exit 1); exit 1; }; }
  32615. fi
  32616. if test -z "${aa_builtin_TRUE}" && test -z "${aa_builtin_FALSE}"; then
  32617.   { { echo "$as_me:$LINENO: error: conditional \"aa_builtin\" was never defined.
  32618. Usually this means the macro was only invoked conditionally." >&5
  32619. echo "$as_me: error: conditional \"aa_builtin\" was never defined.
  32620. Usually this means the macro was only invoked conditionally." >&2;}
  32621.    { (exit 1); exit 1; }; }
  32622. fi
  32623. if test -z "${fb_plugin_TRUE}" && test -z "${fb_plugin_FALSE}"; then
  32624.   { { echo "$as_me:$LINENO: error: conditional \"fb_plugin\" was never defined.
  32625. Usually this means the macro was only invoked conditionally." >&5
  32626. echo "$as_me: error: conditional \"fb_plugin\" was never defined.
  32627. Usually this means the macro was only invoked conditionally." >&2;}
  32628.    { (exit 1); exit 1; }; }
  32629. fi
  32630. if test -z "${fb_builtin_TRUE}" && test -z "${fb_builtin_FALSE}"; then
  32631.   { { echo "$as_me:$LINENO: error: conditional \"fb_builtin\" was never defined.
  32632. Usually this means the macro was only invoked conditionally." >&5
  32633. echo "$as_me: error: conditional \"fb_builtin\" was never defined.
  32634. Usually this means the macro was only invoked conditionally." >&2;}
  32635.    { (exit 1); exit 1; }; }
  32636. fi
  32637. if test -z "${ggi_plugin_TRUE}" && test -z "${ggi_plugin_FALSE}"; then
  32638.   { { echo "$as_me:$LINENO: error: conditional \"ggi_plugin\" was never defined.
  32639. Usually this means the macro was only invoked conditionally." >&5
  32640. echo "$as_me: error: conditional \"ggi_plugin\" was never defined.
  32641. Usually this means the macro was only invoked conditionally." >&2;}
  32642.    { (exit 1); exit 1; }; }
  32643. fi
  32644. if test -z "${ggi_builtin_TRUE}" && test -z "${ggi_builtin_FALSE}"; then
  32645.   { { echo "$as_me:$LINENO: error: conditional \"ggi_builtin\" was never defined.
  32646. Usually this means the macro was only invoked conditionally." >&5
  32647. echo "$as_me: error: conditional \"ggi_builtin\" was never defined.
  32648. Usually this means the macro was only invoked conditionally." >&2;}
  32649.    { (exit 1); exit 1; }; }
  32650. fi
  32651. if test -z "${glide_plugin_TRUE}" && test -z "${glide_plugin_FALSE}"; then
  32652.   { { echo "$as_me:$LINENO: error: conditional \"glide_plugin\" was never defined.
  32653. Usually this means the macro was only invoked conditionally." >&5
  32654. echo "$as_me: error: conditional \"glide_plugin\" was never defined.
  32655. Usually this means the macro was only invoked conditionally." >&2;}
  32656.    { (exit 1); exit 1; }; }
  32657. fi
  32658. if test -z "${glide_builtin_TRUE}" && test -z "${glide_builtin_FALSE}"; then
  32659.   { { echo "$as_me:$LINENO: error: conditional \"glide_builtin\" was never defined.
  32660. Usually this means the macro was only invoked conditionally." >&5
  32661. echo "$as_me: error: conditional \"glide_builtin\" was never defined.
  32662. Usually this means the macro was only invoked conditionally." >&2;}
  32663.    { (exit 1); exit 1; }; }
  32664. fi
  32665. if test -z "${vout_sdl_plugin_TRUE}" && test -z "${vout_sdl_plugin_FALSE}"; then
  32666.   { { echo "$as_me:$LINENO: error: conditional \"vout_sdl_plugin\" was never defined.
  32667. Usually this means the macro was only invoked conditionally." >&5
  32668. echo "$as_me: error: conditional \"vout_sdl_plugin\" was never defined.
  32669. Usually this means the macro was only invoked conditionally." >&2;}
  32670.    { (exit 1); exit 1; }; }
  32671. fi
  32672. if test -z "${vout_sdl_builtin_TRUE}" && test -z "${vout_sdl_builtin_FALSE}"; then
  32673.   { { echo "$as_me:$LINENO: error: conditional \"vout_sdl_builtin\" was never defined.
  32674. Usually this means the macro was only invoked conditionally." >&5
  32675. echo "$as_me: error: conditional \"vout_sdl_builtin\" was never defined.
  32676. Usually this means the macro was only invoked conditionally." >&2;}
  32677.    { (exit 1); exit 1; }; }
  32678. fi
  32679. if test -z "${svgalib_plugin_TRUE}" && test -z "${svgalib_plugin_FALSE}"; then
  32680.   { { echo "$as_me:$LINENO: error: conditional \"svgalib_plugin\" was never defined.
  32681. Usually this means the macro was only invoked conditionally." >&5
  32682. echo "$as_me: error: conditional \"svgalib_plugin\" was never defined.
  32683. Usually this means the macro was only invoked conditionally." >&2;}
  32684.    { (exit 1); exit 1; }; }
  32685. fi
  32686. if test -z "${svgalib_builtin_TRUE}" && test -z "${svgalib_builtin_FALSE}"; then
  32687.   { { echo "$as_me:$LINENO: error: conditional \"svgalib_builtin\" was never defined.
  32688. Usually this means the macro was only invoked conditionally." >&5
  32689. echo "$as_me: error: conditional \"svgalib_builtin\" was never defined.
  32690. Usually this means the macro was only invoked conditionally." >&2;}
  32691.    { (exit 1); exit 1; }; }
  32692. fi
  32693. if test -z "${wingdi_plugin_TRUE}" && test -z "${wingdi_plugin_FALSE}"; then
  32694.   { { echo "$as_me:$LINENO: error: conditional \"wingdi_plugin\" was never defined.
  32695. Usually this means the macro was only invoked conditionally." >&5
  32696. echo "$as_me: error: conditional \"wingdi_plugin\" was never defined.
  32697. Usually this means the macro was only invoked conditionally." >&2;}
  32698.    { (exit 1); exit 1; }; }
  32699. fi
  32700. if test -z "${wingdi_builtin_TRUE}" && test -z "${wingdi_builtin_FALSE}"; then
  32701.   { { echo "$as_me:$LINENO: error: conditional \"wingdi_builtin\" was never defined.
  32702. Usually this means the macro was only invoked conditionally." >&5
  32703. echo "$as_me: error: conditional \"wingdi_builtin\" was never defined.
  32704. Usually this means the macro was only invoked conditionally." >&2;}
  32705.    { (exit 1); exit 1; }; }
  32706. fi
  32707. if test -z "${vout_encoder_plugin_TRUE}" && test -z "${vout_encoder_plugin_FALSE}"; then
  32708.   { { echo "$as_me:$LINENO: error: conditional \"vout_encoder_plugin\" was never defined.
  32709. Usually this means the macro was only invoked conditionally." >&5
  32710. echo "$as_me: error: conditional \"vout_encoder_plugin\" was never defined.
  32711. Usually this means the macro was only invoked conditionally." >&2;}
  32712.    { (exit 1); exit 1; }; }
  32713. fi
  32714. if test -z "${vout_encoder_builtin_TRUE}" && test -z "${vout_encoder_builtin_FALSE}"; then
  32715.   { { echo "$as_me:$LINENO: error: conditional \"vout_encoder_builtin\" was never defined.
  32716. Usually this means the macro was only invoked conditionally." >&5
  32717. echo "$as_me: error: conditional \"vout_encoder_builtin\" was never defined.
  32718. Usually this means the macro was only invoked conditionally." >&2;}
  32719.    { (exit 1); exit 1; }; }
  32720. fi
  32721. if test -z "${vout_directx_plugin_TRUE}" && test -z "${vout_directx_plugin_FALSE}"; then
  32722.   { { echo "$as_me:$LINENO: error: conditional \"vout_directx_plugin\" was never defined.
  32723. Usually this means the macro was only invoked conditionally." >&5
  32724. echo "$as_me: error: conditional \"vout_directx_plugin\" was never defined.
  32725. Usually this means the macro was only invoked conditionally." >&2;}
  32726.    { (exit 1); exit 1; }; }
  32727. fi
  32728. if test -z "${vout_directx_builtin_TRUE}" && test -z "${vout_directx_builtin_FALSE}"; then
  32729.   { { echo "$as_me:$LINENO: error: conditional \"vout_directx_builtin\" was never defined.
  32730. Usually this means the macro was only invoked conditionally." >&5
  32731. echo "$as_me: error: conditional \"vout_directx_builtin\" was never defined.
  32732. Usually this means the macro was only invoked conditionally." >&2;}
  32733.    { (exit 1); exit 1; }; }
  32734. fi
  32735. if test -z "${mga_plugin_TRUE}" && test -z "${mga_plugin_FALSE}"; then
  32736.   { { echo "$as_me:$LINENO: error: conditional \"mga_plugin\" was never defined.
  32737. Usually this means the macro was only invoked conditionally." >&5
  32738. echo "$as_me: error: conditional \"mga_plugin\" was never defined.
  32739. Usually this means the macro was only invoked conditionally." >&2;}
  32740.    { (exit 1); exit 1; }; }
  32741. fi
  32742. if test -z "${mga_builtin_TRUE}" && test -z "${mga_builtin_FALSE}"; then
  32743.   { { echo "$as_me:$LINENO: error: conditional \"mga_builtin\" was never defined.
  32744. Usually this means the macro was only invoked conditionally." >&5
  32745. echo "$as_me: error: conditional \"mga_builtin\" was never defined.
  32746. Usually this means the macro was only invoked conditionally." >&2;}
  32747.    { (exit 1); exit 1; }; }
  32748. fi
  32749. if test -z "${xmga_plugin_TRUE}" && test -z "${xmga_plugin_FALSE}"; then
  32750.   { { echo "$as_me:$LINENO: error: conditional \"xmga_plugin\" was never defined.
  32751. Usually this means the macro was only invoked conditionally." >&5
  32752. echo "$as_me: error: conditional \"xmga_plugin\" was never defined.
  32753. Usually this means the macro was only invoked conditionally." >&2;}
  32754.    { (exit 1); exit 1; }; }
  32755. fi
  32756. if test -z "${xmga_builtin_TRUE}" && test -z "${xmga_builtin_FALSE}"; then
  32757.   { { echo "$as_me:$LINENO: error: conditional \"xmga_builtin\" was never defined.
  32758. Usually this means the macro was only invoked conditionally." >&5
  32759. echo "$as_me: error: conditional \"xmga_builtin\" was never defined.
  32760. Usually this means the macro was only invoked conditionally." >&2;}
  32761.    { (exit 1); exit 1; }; }
  32762. fi
  32763. if test -z "${qte_plugin_TRUE}" && test -z "${qte_plugin_FALSE}"; then
  32764.   { { echo "$as_me:$LINENO: error: conditional \"qte_plugin\" was never defined.
  32765. Usually this means the macro was only invoked conditionally." >&5
  32766. echo "$as_me: error: conditional \"qte_plugin\" was never defined.
  32767. Usually this means the macro was only invoked conditionally." >&2;}
  32768.    { (exit 1); exit 1; }; }
  32769. fi
  32770. if test -z "${qte_builtin_TRUE}" && test -z "${qte_builtin_FALSE}"; then
  32771.   { { echo "$as_me:$LINENO: error: conditional \"qte_builtin\" was never defined.
  32772. Usually this means the macro was only invoked conditionally." >&5
  32773. echo "$as_me: error: conditional \"qte_builtin\" was never defined.
  32774. Usually this means the macro was only invoked conditionally." >&2;}
  32775.    { (exit 1); exit 1; }; }
  32776. fi
  32777. if test -z "${x11_plugin_TRUE}" && test -z "${x11_plugin_FALSE}"; then
  32778.   { { echo "$as_me:$LINENO: error: conditional \"x11_plugin\" was never defined.
  32779. Usually this means the macro was only invoked conditionally." >&5
  32780. echo "$as_me: error: conditional \"x11_plugin\" was never defined.
  32781. Usually this means the macro was only invoked conditionally." >&2;}
  32782.    { (exit 1); exit 1; }; }
  32783. fi
  32784. if test -z "${x11_builtin_TRUE}" && test -z "${x11_builtin_FALSE}"; then
  32785.   { { echo "$as_me:$LINENO: error: conditional \"x11_builtin\" was never defined.
  32786. Usually this means the macro was only invoked conditionally." >&5
  32787. echo "$as_me: error: conditional \"x11_builtin\" was never defined.
  32788. Usually this means the macro was only invoked conditionally." >&2;}
  32789.    { (exit 1); exit 1; }; }
  32790. fi
  32791. if test -z "${xvideo_plugin_TRUE}" && test -z "${xvideo_plugin_FALSE}"; then
  32792.   { { echo "$as_me:$LINENO: error: conditional \"xvideo_plugin\" was never defined.
  32793. Usually this means the macro was only invoked conditionally." >&5
  32794. echo "$as_me: error: conditional \"xvideo_plugin\" was never defined.
  32795. Usually this means the macro was only invoked conditionally." >&2;}
  32796.    { (exit 1); exit 1; }; }
  32797. fi
  32798. if test -z "${xvideo_builtin_TRUE}" && test -z "${xvideo_builtin_FALSE}"; then
  32799.   { { echo "$as_me:$LINENO: error: conditional \"xvideo_builtin\" was never defined.
  32800. Usually this means the macro was only invoked conditionally." >&5
  32801. echo "$as_me: error: conditional \"xvideo_builtin\" was never defined.
  32802. Usually this means the macro was only invoked conditionally." >&2;}
  32803.    { (exit 1); exit 1; }; }
  32804. fi
  32805. if test -z "${scope_plugin_TRUE}" && test -z "${scope_plugin_FALSE}"; then
  32806.   { { echo "$as_me:$LINENO: error: conditional \"scope_plugin\" was never defined.
  32807. Usually this means the macro was only invoked conditionally." >&5
  32808. echo "$as_me: error: conditional \"scope_plugin\" was never defined.
  32809. Usually this means the macro was only invoked conditionally." >&2;}
  32810.    { (exit 1); exit 1; }; }
  32811. fi
  32812. if test -z "${scope_builtin_TRUE}" && test -z "${scope_builtin_FALSE}"; then
  32813.   { { echo "$as_me:$LINENO: error: conditional \"scope_builtin\" was never defined.
  32814. Usually this means the macro was only invoked conditionally." >&5
  32815. echo "$as_me: error: conditional \"scope_builtin\" was never defined.
  32816. Usually this means the macro was only invoked conditionally." >&2;}
  32817.    { (exit 1); exit 1; }; }
  32818. fi
  32819. if test -z "${xosd_plugin_TRUE}" && test -z "${xosd_plugin_FALSE}"; then
  32820.   { { echo "$as_me:$LINENO: error: conditional \"xosd_plugin\" was never defined.
  32821. Usually this means the macro was only invoked conditionally." >&5
  32822. echo "$as_me: error: conditional \"xosd_plugin\" was never defined.
  32823. Usually this means the macro was only invoked conditionally." >&2;}
  32824.    { (exit 1); exit 1; }; }
  32825. fi
  32826. if test -z "${xosd_builtin_TRUE}" && test -z "${xosd_builtin_FALSE}"; then
  32827.   { { echo "$as_me:$LINENO: error: conditional \"xosd_builtin\" was never defined.
  32828. Usually this means the macro was only invoked conditionally." >&5
  32829. echo "$as_me: error: conditional \"xosd_builtin\" was never defined.
  32830. Usually this means the macro was only invoked conditionally." >&2;}
  32831.    { (exit 1); exit 1; }; }
  32832. fi
  32833. if test -z "${UNTRUE_TRUE}" && test -z "${UNTRUE_FALSE}"; then
  32834.   { { echo "$as_me:$LINENO: error: conditional \"UNTRUE\" was never defined.
  32835. Usually this means the macro was only invoked conditionally." >&5
  32836. echo "$as_me: error: conditional \"UNTRUE\" was never defined.
  32837. Usually this means the macro was only invoked conditionally." >&2;}
  32838.    { (exit 1); exit 1; }; }
  32839. fi
  32840.  
  32841. : ${CONFIG_STATUS=./config.status}
  32842. ac_clean_files_save=$ac_clean_files
  32843. ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  32844. { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
  32845. echo "$as_me: creating $CONFIG_STATUS" >&6;}
  32846. cat >$CONFIG_STATUS <<_ACEOF
  32847. #! $SHELL
  32848. # Generated by $as_me.
  32849. # Run this file to recreate the current configuration.
  32850. # Compiler output produced by configure, useful for debugging
  32851. # configure, is in config.log if it exists.
  32852.  
  32853. debug=false
  32854. ac_cs_recheck=false
  32855. ac_cs_silent=false
  32856. SHELL=\${CONFIG_SHELL-$SHELL}
  32857. _ACEOF
  32858.  
  32859. cat >>$CONFIG_STATUS <<\_ACEOF
  32860. ## --------------------- ##
  32861. ## M4sh Initialization.  ##
  32862. ## --------------------- ##
  32863.  
  32864. # Be Bourne compatible
  32865. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  32866.   emulate sh
  32867.   NULLCMD=:
  32868.   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  32869.   # is contrary to our usage.  Disable this feature.
  32870.   alias -g '${1+"$@"}'='"$@"'
  32871. elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
  32872.   set -o posix
  32873. fi
  32874.  
  32875. # Support unset when possible.
  32876. if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
  32877.   as_unset=unset
  32878. else
  32879.   as_unset=false
  32880. fi
  32881.  
  32882.  
  32883. # Work around bugs in pre-3.0 UWIN ksh.
  32884. $as_unset ENV MAIL MAILPATH
  32885. PS1='$ '
  32886. PS2='> '
  32887. PS4='+ '
  32888.  
  32889. # NLS nuisances.
  32890. for as_var in \
  32891.   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
  32892.   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
  32893.   LC_TELEPHONE LC_TIME
  32894. do
  32895.   if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
  32896.     eval $as_var=C; export $as_var
  32897.   else
  32898.     $as_unset $as_var
  32899.   fi
  32900. done
  32901.  
  32902. # Required to use basename.
  32903. if expr a : '\(a\)' >/dev/null 2>&1; then
  32904.   as_expr=expr
  32905. else
  32906.   as_expr=false
  32907. fi
  32908.  
  32909. if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
  32910.   as_basename=basename
  32911. else
  32912.   as_basename=false
  32913. fi
  32914.  
  32915.  
  32916. # Name of the executable.
  32917. as_me=`$as_basename "$0" ||
  32918. $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  32919.      X"$0" : 'X\(//\)$' \| \
  32920.      X"$0" : 'X\(/\)$' \| \
  32921.      .     : '\(.\)' 2>/dev/null ||
  32922. echo X/"$0" |
  32923.     sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
  32924.         /^X\/\(\/\/\)$/{ s//\1/; q; }
  32925.         /^X\/\(\/\).*/{ s//\1/; q; }
  32926.         s/.*/./; q'`
  32927.  
  32928.  
  32929. # PATH needs CR, and LINENO needs CR and PATH.
  32930. # Avoid depending upon Character Ranges.
  32931. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  32932. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  32933. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  32934. as_cr_digits='0123456789'
  32935. as_cr_alnum=$as_cr_Letters$as_cr_digits
  32936.  
  32937. # The user is always right.
  32938. if test "${PATH_SEPARATOR+set}" != set; then
  32939.   echo "#! /bin/sh" >conf$$.sh
  32940.   echo  "exit 0"   >>conf$$.sh
  32941.   chmod +x conf$$.sh
  32942.   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
  32943.     PATH_SEPARATOR=';'
  32944.   else
  32945.     PATH_SEPARATOR=:
  32946.   fi
  32947.   rm -f conf$$.sh
  32948. fi
  32949.  
  32950.  
  32951.   as_lineno_1=$LINENO
  32952.   as_lineno_2=$LINENO
  32953.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  32954.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  32955.   test "x$as_lineno_3"  = "x$as_lineno_2"  || {
  32956.   # Find who we are.  Look in the path if we contain no path at all
  32957.   # relative or not.
  32958.   case $0 in
  32959.     *[\\/]* ) as_myself=$0 ;;
  32960.     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  32961. for as_dir in $PATH
  32962. do
  32963.   IFS=$as_save_IFS
  32964.   test -z "$as_dir" && as_dir=.
  32965.   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  32966. done
  32967.  
  32968.        ;;
  32969.   esac
  32970.   # We did not find ourselves, most probably we were run as `sh COMMAND'
  32971.   # in which case we are not to be found in the path.
  32972.   if test "x$as_myself" = x; then
  32973.     as_myself=$0
  32974.   fi
  32975.   if test ! -f "$as_myself"; then
  32976.     { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
  32977. echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
  32978.    { (exit 1); exit 1; }; }
  32979.   fi
  32980.   case $CONFIG_SHELL in
  32981.   '')
  32982.     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  32983. for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  32984. do
  32985.   IFS=$as_save_IFS
  32986.   test -z "$as_dir" && as_dir=.
  32987.   for as_base in sh bash ksh sh5; do
  32988.      case $as_dir in
  32989.      /*)
  32990.        if ("$as_dir/$as_base" -c '
  32991.   as_lineno_1=$LINENO
  32992.   as_lineno_2=$LINENO
  32993.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  32994.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  32995.   test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
  32996.          $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
  32997.          $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
  32998.          CONFIG_SHELL=$as_dir/$as_base
  32999.          export CONFIG_SHELL
  33000.          exec "$CONFIG_SHELL" "$0" ${1+"$@"}
  33001.        fi;;
  33002.      esac
  33003.        done
  33004. done
  33005. ;;
  33006.   esac
  33007.  
  33008.   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  33009.   # uniformly replaced by the line number.  The first 'sed' inserts a
  33010.   # line-number line before each line; the second 'sed' does the real
  33011.   # work.  The second script uses 'N' to pair each line-number line
  33012.   # with the numbered line, and appends trailing '-' during
  33013.   # substitution so that $LINENO is not a special case at line end.
  33014.   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  33015.   # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
  33016.   sed '=' <$as_myself |
  33017.     sed '
  33018.       N
  33019.       s,$,-,
  33020.       : loop
  33021.       s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
  33022.       t loop
  33023.       s,-$,,
  33024.       s,^['$as_cr_digits']*\n,,
  33025.     ' >$as_me.lineno &&
  33026.   chmod +x $as_me.lineno ||
  33027.     { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
  33028. echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
  33029.    { (exit 1); exit 1; }; }
  33030.  
  33031.   # Don't try to exec as it changes $[0], causing all sort of problems
  33032.   # (the dirname of $[0] is not the place where we might find the
  33033.   # original and so on.  Autoconf is especially sensible to this).
  33034.   . ./$as_me.lineno
  33035.   # Exit status is that of the last command.
  33036.   exit
  33037. }
  33038.  
  33039.  
  33040. case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
  33041.   *c*,-n*) ECHO_N= ECHO_C='
  33042. ' ECHO_T='    ' ;;
  33043.   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
  33044.   *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
  33045. esac
  33046.  
  33047. if expr a : '\(a\)' >/dev/null 2>&1; then
  33048.   as_expr=expr
  33049. else
  33050.   as_expr=false
  33051. fi
  33052.  
  33053. rm -f conf$$ conf$$.exe conf$$.file
  33054. echo >conf$$.file
  33055. if ln -s conf$$.file conf$$ 2>/dev/null; then
  33056.   # We could just check for DJGPP; but this test a) works b) is more generic
  33057.   # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
  33058.   if test -f conf$$.exe; then
  33059.     # Don't use ln at all; we don't have any links
  33060.     as_ln_s='cp -p'
  33061.   else
  33062.     as_ln_s='ln -s'
  33063.   fi
  33064. elif ln conf$$.file conf$$ 2>/dev/null; then
  33065.   as_ln_s=ln
  33066. else
  33067.   as_ln_s='cp -p'
  33068. fi
  33069. rm -f conf$$ conf$$.exe conf$$.file
  33070.  
  33071. if mkdir -p . 2>/dev/null; then
  33072.   as_mkdir_p=:
  33073. else
  33074.   as_mkdir_p=false
  33075. fi
  33076.  
  33077. as_executable_p="test -f"
  33078.  
  33079. # Sed expression to map a string onto a valid CPP name.
  33080. as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
  33081.  
  33082. # Sed expression to map a string onto a valid variable name.
  33083. as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
  33084.  
  33085.  
  33086. # IFS
  33087. # We need space, tab and new line, in precisely that order.
  33088. as_nl='
  33089. '
  33090. IFS="     $as_nl"
  33091.  
  33092. # CDPATH.
  33093. $as_unset CDPATH
  33094.  
  33095. exec 6>&1
  33096.  
  33097. # Open the log real soon, to keep \$[0] and so on meaningful, and to
  33098. # report actual input values of CONFIG_FILES etc. instead of their
  33099. # values after options handling.  Logging --version etc. is OK.
  33100. exec 5>>config.log
  33101. {
  33102.   echo
  33103.   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  33104. ## Running $as_me. ##
  33105. _ASBOX
  33106. } >&5
  33107. cat >&5 <<_CSEOF
  33108.  
  33109. This file was extended by vlc $as_me 0.5.3, which was
  33110. generated by GNU Autoconf 2.57.  Invocation command line was
  33111.  
  33112.   CONFIG_FILES    = $CONFIG_FILES
  33113.   CONFIG_HEADERS  = $CONFIG_HEADERS
  33114.   CONFIG_LINKS    = $CONFIG_LINKS
  33115.   CONFIG_COMMANDS = $CONFIG_COMMANDS
  33116.   $ $0 $@
  33117.  
  33118. _CSEOF
  33119. echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
  33120. echo >&5
  33121. _ACEOF
  33122.  
  33123. # Files that config.status was made for.
  33124. if test -n "$ac_config_files"; then
  33125.   echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
  33126. fi
  33127.  
  33128. if test -n "$ac_config_headers"; then
  33129.   echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
  33130. fi
  33131.  
  33132. if test -n "$ac_config_links"; then
  33133.   echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
  33134. fi
  33135.  
  33136. if test -n "$ac_config_commands"; then
  33137.   echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
  33138. fi
  33139.  
  33140. cat >>$CONFIG_STATUS <<\_ACEOF
  33141.  
  33142. ac_cs_usage="\
  33143. \`$as_me' instantiates files from templates according to the
  33144. current configuration.
  33145.  
  33146. Usage: $0 [OPTIONS] [FILE]...
  33147.  
  33148.   -h, --help       print this help, then exit
  33149.   -V, --version    print version number, then exit
  33150.   -q, --quiet      do not print progress messages
  33151.   -d, --debug      don't remove temporary files
  33152.       --recheck    update $as_me by reconfiguring in the same conditions
  33153.   --file=FILE[:TEMPLATE]
  33154.                    instantiate the configuration file FILE
  33155.   --header=FILE[:TEMPLATE]
  33156.                    instantiate the configuration header FILE
  33157.  
  33158. Configuration files:
  33159. $config_files
  33160.  
  33161. Configuration headers:
  33162. $config_headers
  33163.  
  33164. Configuration commands:
  33165. $config_commands
  33166.  
  33167. Report bugs to <bug-autoconf@gnu.org>."
  33168. _ACEOF
  33169.  
  33170. cat >>$CONFIG_STATUS <<_ACEOF
  33171. ac_cs_version="\\
  33172. vlc config.status 0.5.3
  33173. configured by $0, generated by GNU Autoconf 2.57,
  33174.   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
  33175.  
  33176. Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
  33177. Free Software Foundation, Inc.
  33178. This config.status script is free software; the Free Software Foundation
  33179. gives unlimited permission to copy, distribute and modify it."
  33180. srcdir=$srcdir
  33181. INSTALL="$INSTALL"
  33182. _ACEOF
  33183.  
  33184. cat >>$CONFIG_STATUS <<\_ACEOF
  33185. # If no file are specified by the user, then we need to provide default
  33186. # value.  By we need to know if files were specified by the user.
  33187. ac_need_defaults=:
  33188. while test $# != 0
  33189. do
  33190.   case $1 in
  33191.   --*=*)
  33192.     ac_option=`expr "x$1" : 'x\([^=]*\)='`
  33193.     ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
  33194.     ac_shift=:
  33195.     ;;
  33196.   -*)
  33197.     ac_option=$1
  33198.     ac_optarg=$2
  33199.     ac_shift=shift
  33200.     ;;
  33201.   *) # This is not an option, so the user has probably given explicit
  33202.      # arguments.
  33203.      ac_option=$1
  33204.      ac_need_defaults=false;;
  33205.   esac
  33206.  
  33207.   case $ac_option in
  33208.   # Handling of the options.
  33209. _ACEOF
  33210. cat >>$CONFIG_STATUS <<\_ACEOF
  33211.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  33212.     ac_cs_recheck=: ;;
  33213.   --version | --vers* | -V )
  33214.     echo "$ac_cs_version"; exit 0 ;;
  33215.   --he | --h)
  33216.     # Conflict between --help and --header
  33217.     { { echo "$as_me:$LINENO: error: ambiguous option: $1
  33218. Try \`$0 --help' for more information." >&5
  33219. echo "$as_me: error: ambiguous option: $1
  33220. Try \`$0 --help' for more information." >&2;}
  33221.    { (exit 1); exit 1; }; };;
  33222.   --help | --hel | -h )
  33223.     echo "$ac_cs_usage"; exit 0 ;;
  33224.   --debug | --d* | -d )
  33225.     debug=: ;;
  33226.   --file | --fil | --fi | --f )
  33227.     $ac_shift
  33228.     CONFIG_FILES="$CONFIG_FILES $ac_optarg"
  33229.     ac_need_defaults=false;;
  33230.   --header | --heade | --head | --hea )
  33231.     $ac_shift
  33232.     CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
  33233.     ac_need_defaults=false;;
  33234.   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  33235.   | -silent | --silent | --silen | --sile | --sil | --si | --s)
  33236.     ac_cs_silent=: ;;
  33237.  
  33238.   # This is an error.
  33239.   -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
  33240. Try \`$0 --help' for more information." >&5
  33241. echo "$as_me: error: unrecognized option: $1
  33242. Try \`$0 --help' for more information." >&2;}
  33243.    { (exit 1); exit 1; }; } ;;
  33244.  
  33245.   *) ac_config_targets="$ac_config_targets $1" ;;
  33246.  
  33247.   esac
  33248.   shift
  33249. done
  33250.  
  33251. ac_configure_extra_args=
  33252.  
  33253. if $ac_cs_silent; then
  33254.   exec 6>/dev/null
  33255.   ac_configure_extra_args="$ac_configure_extra_args --silent"
  33256. fi
  33257.  
  33258. _ACEOF
  33259. cat >>$CONFIG_STATUS <<_ACEOF
  33260. if \$ac_cs_recheck; then
  33261.   echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
  33262.   exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
  33263. fi
  33264.  
  33265. _ACEOF
  33266.  
  33267. cat >>$CONFIG_STATUS <<_ACEOF
  33268. #
  33269. # INIT-COMMANDS section.
  33270. #
  33271.  
  33272. AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
  33273. # Capture the value of obsolete ALL_LINGUAS because we need it to compute
  33274.     # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
  33275.     # from automake.
  33276.     eval 'ALL_LINGUAS''="$ALL_LINGUAS"'
  33277.     # Capture the value of LINGUAS because we need it to compute CATALOGS.
  33278.     LINGUAS="${LINGUAS-%UNSET%}"
  33279.  
  33280.  
  33281. _ACEOF
  33282.  
  33283.  
  33284.  
  33285. cat >>$CONFIG_STATUS <<\_ACEOF
  33286. for ac_config_target in $ac_config_targets
  33287. do
  33288.   case "$ac_config_target" in
  33289.   # Handling of arguments.
  33290.   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  33291.   "autotools/Makefile" ) CONFIG_FILES="$CONFIG_FILES autotools/Makefile" ;;
  33292.   "debian/Makefile" ) CONFIG_FILES="$CONFIG_FILES debian/Makefile" ;;
  33293.   "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
  33294.   "intl/Makefile" ) CONFIG_FILES="$CONFIG_FILES intl/Makefile" ;;
  33295.   "ipkg/Makefile" ) CONFIG_FILES="$CONFIG_FILES ipkg/Makefile" ;;
  33296.   "lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
  33297.   "m4/Makefile" ) CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;;
  33298.   "modules/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/Makefile" ;;
  33299.   "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
  33300.   "share/Makefile" ) CONFIG_FILES="$CONFIG_FILES share/Makefile" ;;
  33301.   "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
  33302.   "vlc-config" ) CONFIG_FILES="$CONFIG_FILES vlc-config" ;;
  33303.   "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  33304.   "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
  33305.   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
  33306.   "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  33307.   *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  33308. echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
  33309.    { (exit 1); exit 1; }; };;
  33310.   esac
  33311. done
  33312.  
  33313. # If the user did not use the arguments to specify the items to instantiate,
  33314. # then the envvar interface is used.  Set only those that are not.
  33315. # We use the long form for the default assignment because of an extremely
  33316. # bizarre bug on SunOS 4.1.3.
  33317. if $ac_need_defaults; then
  33318.   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  33319.   test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  33320.   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  33321. fi
  33322.  
  33323. # Have a temporary directory for convenience.  Make it in the build tree
  33324. # simply because there is no reason to put it here, and in addition,
  33325. # creating and moving files from /tmp can sometimes cause problems.
  33326. # Create a temporary directory, and hook for its removal unless debugging.
  33327. $debug ||
  33328. {
  33329.   trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
  33330.   trap '{ (exit 1); exit 1; }' 1 2 13 15
  33331. }
  33332.  
  33333. # Create a (secure) tmp directory for tmp files.
  33334.  
  33335. {
  33336.   tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
  33337.   test -n "$tmp" && test -d "$tmp"
  33338. }  ||
  33339. {
  33340.   tmp=./confstat$$-$RANDOM
  33341.   (umask 077 && mkdir $tmp)
  33342. } ||
  33343. {
  33344.    echo "$me: cannot create a temporary directory in ." >&2
  33345.    { (exit 1); exit 1; }
  33346. }
  33347.  
  33348. _ACEOF
  33349.  
  33350. cat >>$CONFIG_STATUS <<_ACEOF
  33351.  
  33352. #
  33353. # CONFIG_FILES section.
  33354. #
  33355.  
  33356. # No need to generate the scripts if there are no CONFIG_FILES.
  33357. # This happens for instance when ./config.status config.h
  33358. if test -n "\$CONFIG_FILES"; then
  33359.   # Protect against being on the right side of a sed subst in config.status.
  33360.   sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
  33361.    s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
  33362. s,@SHELL@,$SHELL,;t t
  33363. s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
  33364. s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
  33365. s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
  33366. s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
  33367. s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
  33368. s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
  33369. s,@exec_prefix@,$exec_prefix,;t t
  33370. s,@prefix@,$prefix,;t t
  33371. s,@program_transform_name@,$program_transform_name,;t t
  33372. s,@bindir@,$bindir,;t t
  33373. s,@sbindir@,$sbindir,;t t
  33374. s,@libexecdir@,$libexecdir,;t t
  33375. s,@datadir@,$datadir,;t t
  33376. s,@sysconfdir@,$sysconfdir,;t t
  33377. s,@sharedstatedir@,$sharedstatedir,;t t
  33378. s,@localstatedir@,$localstatedir,;t t
  33379. s,@libdir@,$libdir,;t t
  33380. s,@includedir@,$includedir,;t t
  33381. s,@oldincludedir@,$oldincludedir,;t t
  33382. s,@infodir@,$infodir,;t t
  33383. s,@mandir@,$mandir,;t t
  33384. s,@build_alias@,$build_alias,;t t
  33385. s,@host_alias@,$host_alias,;t t
  33386. s,@target_alias@,$target_alias,;t t
  33387. s,@DEFS@,$DEFS,;t t
  33388. s,@ECHO_C@,$ECHO_C,;t t
  33389. s,@ECHO_N@,$ECHO_N,;t t
  33390. s,@ECHO_T@,$ECHO_T,;t t
  33391. s,@LIBS@,$LIBS,;t t
  33392. s,@build@,$build,;t t
  33393. s,@build_cpu@,$build_cpu,;t t
  33394. s,@build_vendor@,$build_vendor,;t t
  33395. s,@build_os@,$build_os,;t t
  33396. s,@host@,$host,;t t
  33397. s,@host_cpu@,$host_cpu,;t t
  33398. s,@host_vendor@,$host_vendor,;t t
  33399. s,@host_os@,$host_os,;t t
  33400. s,@target@,$target,;t t
  33401. s,@target_cpu@,$target_cpu,;t t
  33402. s,@target_vendor@,$target_vendor,;t t
  33403. s,@target_os@,$target_os,;t t
  33404. s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
  33405. s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
  33406. s,@INSTALL_DATA@,$INSTALL_DATA,;t t
  33407. s,@CYGPATH_W@,$CYGPATH_W,;t t
  33408. s,@PACKAGE@,$PACKAGE,;t t
  33409. s,@VERSION@,$VERSION,;t t
  33410. s,@ACLOCAL@,$ACLOCAL,;t t
  33411. s,@AUTOCONF@,$AUTOCONF,;t t
  33412. s,@AUTOMAKE@,$AUTOMAKE,;t t
  33413. s,@AUTOHEADER@,$AUTOHEADER,;t t
  33414. s,@MAKEINFO@,$MAKEINFO,;t t
  33415. s,@AMTAR@,$AMTAR,;t t
  33416. s,@install_sh@,$install_sh,;t t
  33417. s,@STRIP@,$STRIP,;t t
  33418. s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
  33419. s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
  33420. s,@AWK@,$AWK,;t t
  33421. s,@SET_MAKE@,$SET_MAKE,;t t
  33422. s,@CC@,$CC,;t t
  33423. s,@CFLAGS@,$CFLAGS,;t t
  33424. s,@LDFLAGS@,$LDFLAGS,;t t
  33425. s,@CPPFLAGS@,$CPPFLAGS,;t t
  33426. s,@ac_ct_CC@,$ac_ct_CC,;t t
  33427. s,@EXEEXT@,$EXEEXT,;t t
  33428. s,@OBJEXT@,$OBJEXT,;t t
  33429. s,@DEPDIR@,$DEPDIR,;t t
  33430. s,@am__include@,$am__include,;t t
  33431. s,@am__quote@,$am__quote,;t t
  33432. s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
  33433. s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
  33434. s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
  33435. s,@CCDEPMODE@,$CCDEPMODE,;t t
  33436. s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
  33437. s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
  33438. s,@CPP@,$CPP,;t t
  33439. s,@CXX@,$CXX,;t t
  33440. s,@CXXFLAGS@,$CXXFLAGS,;t t
  33441. s,@ac_ct_CXX@,$ac_ct_CXX,;t t
  33442. s,@CXXDEPMODE@,$CXXDEPMODE,;t t
  33443. s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t
  33444. s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t
  33445. s,@EGREP@,$EGREP,;t t
  33446. s,@OBJC@,$OBJC,;t t
  33447. s,@OBJCFLAGS@,$OBJCFLAGS,;t t
  33448. s,@OBJCDEPMODE@,$OBJCDEPMODE,;t t
  33449. s,@am__fastdepOBJC_TRUE@,$am__fastdepOBJC_TRUE,;t t
  33450. s,@am__fastdepOBJC_FALSE@,$am__fastdepOBJC_FALSE,;t t
  33451. s,@RANLIB@,$RANLIB,;t t
  33452. s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
  33453. s,@AR@,$AR,;t t
  33454. s,@ac_ct_AR@,$ac_ct_AR,;t t
  33455. s,@LD@,$LD,;t t
  33456. s,@ac_ct_LD@,$ac_ct_LD,;t t
  33457. s,@WINDRES@,$WINDRES,;t t
  33458. s,@ac_ct_WINDRES@,$ac_ct_WINDRES,;t t
  33459. s,@HAVE_BEOS_TRUE@,$HAVE_BEOS_TRUE,;t t
  33460. s,@HAVE_BEOS_FALSE@,$HAVE_BEOS_FALSE,;t t
  33461. s,@HAVE_DARWIN_TRUE@,$HAVE_DARWIN_TRUE,;t t
  33462. s,@HAVE_DARWIN_FALSE@,$HAVE_DARWIN_FALSE,;t t
  33463. s,@HAVE_WIN32_TRUE@,$HAVE_WIN32_TRUE,;t t
  33464. s,@HAVE_WIN32_FALSE@,$HAVE_WIN32_FALSE,;t t
  33465. s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t
  33466. s,@MSGFMT@,$MSGFMT,;t t
  33467. s,@GMSGFMT@,$GMSGFMT,;t t
  33468. s,@XGETTEXT@,$XGETTEXT,;t t
  33469. s,@MSGMERGE@,$MSGMERGE,;t t
  33470. s,@ALLOCA@,$ALLOCA,;t t
  33471. s,@GLIBC21@,$GLIBC21,;t t
  33472. s,@LIBICONV@,$LIBICONV,;t t
  33473. s,@LTLIBICONV@,$LTLIBICONV,;t t
  33474. s,@INTLBISON@,$INTLBISON,;t t
  33475. s,@USE_NLS@,$USE_NLS,;t t
  33476. s,@BUILD_INCLUDED_LIBINTL@,$BUILD_INCLUDED_LIBINTL,;t t
  33477. s,@USE_INCLUDED_LIBINTL@,$USE_INCLUDED_LIBINTL,;t t
  33478. s,@CATOBJEXT@,$CATOBJEXT,;t t
  33479. s,@INTLOBJS@,$INTLOBJS,;t t
  33480. s,@DATADIRNAME@,$DATADIRNAME,;t t
  33481. s,@INSTOBJEXT@,$INSTOBJEXT,;t t
  33482. s,@GENCAT@,$GENCAT,;t t
  33483. s,@INTL_LIBTOOL_SUFFIX_PREFIX@,$INTL_LIBTOOL_SUFFIX_PREFIX,;t t
  33484. s,@INTLLIBS@,$INTLLIBS,;t t
  33485. s,@LIBINTL@,$LIBINTL,;t t
  33486. s,@LTLIBINTL@,$LTLIBINTL,;t t
  33487. s,@POSUB@,$POSUB,;t t
  33488. s,@BUILD_INTL_TRUE@,$BUILD_INTL_TRUE,;t t
  33489. s,@BUILD_INTL_FALSE@,$BUILD_INTL_FALSE,;t t
  33490. s,@BUILD_GETOPT_TRUE@,$BUILD_GETOPT_TRUE,;t t
  33491. s,@BUILD_GETOPT_FALSE@,$BUILD_GETOPT_FALSE,;t t
  33492. s,@BUILD_DIRENT_TRUE@,$BUILD_DIRENT_TRUE,;t t
  33493. s,@BUILD_DIRENT_FALSE@,$BUILD_DIRENT_FALSE,;t t
  33494. s,@GPROF_TRUE@,$GPROF_TRUE,;t t
  33495. s,@GPROF_FALSE@,$GPROF_FALSE,;t t
  33496. s,@CPROF_TRUE@,$CPROF_TRUE,;t t
  33497. s,@CPROF_FALSE@,$CPROF_FALSE,;t t
  33498. s,@OPTIM_TRUE@,$OPTIM_TRUE,;t t
  33499. s,@OPTIM_FALSE@,$OPTIM_FALSE,;t t
  33500. s,@DEBUG_TRUE@,$DEBUG_TRUE,;t t
  33501. s,@DEBUG_FALSE@,$DEBUG_FALSE,;t t
  33502. s,@RELEASE_TRUE@,$RELEASE_TRUE,;t t
  33503. s,@RELEASE_FALSE@,$RELEASE_FALSE,;t t
  33504. s,@SDL12_CONFIG@,$SDL12_CONFIG,;t t
  33505. s,@SDL11_CONFIG@,$SDL11_CONFIG,;t t
  33506. s,@SDL_CONFIG@,$SDL_CONFIG,;t t
  33507. s,@FREETYPE_CONFIG@,$FREETYPE_CONFIG,;t t
  33508. s,@ESD_CONFIG@,$ESD_CONFIG,;t t
  33509. s,@ARTS_CONFIG@,$ARTS_CONFIG,;t t
  33510. s,@GTK12_CONFIG@,$GTK12_CONFIG,;t t
  33511. s,@GTK_CONFIG@,$GTK_CONFIG,;t t
  33512. s,@PKG_CONFIG@,$PKG_CONFIG,;t t
  33513. s,@GTK2_CFLAGS@,$GTK2_CFLAGS,;t t
  33514. s,@GTK2_LIBS@,$GTK2_LIBS,;t t
  33515. s,@GNOME_CONFIG@,$GNOME_CONFIG,;t t
  33516. s,@GNOME2_CFLAGS@,$GNOME2_CFLAGS,;t t
  33517. s,@GNOME2_LIBS@,$GNOME2_LIBS,;t t
  33518. s,@WX_CONFIG@,$WX_CONFIG,;t t
  33519. s,@BPR2MAK@,$BPR2MAK,;t t
  33520. s,@ac_ct_BPR2MAK@,$ac_ct_BPR2MAK,;t t
  33521. s,@BCMAKE@,$BCMAKE,;t t
  33522. s,@ac_ct_BCMAKE@,$ac_ct_BCMAKE,;t t
  33523. s,@MOZILLA_CONFIG@,$MOZILLA_CONFIG,;t t
  33524. s,@BUILD_MOZILLA_TRUE@,$BUILD_MOZILLA_TRUE,;t t
  33525. s,@BUILD_MOZILLA_FALSE@,$BUILD_MOZILLA_FALSE,;t t
  33526. s,@HAVE_PLUGINS_TRUE@,$HAVE_PLUGINS_TRUE,;t t
  33527. s,@HAVE_PLUGINS_FALSE@,$HAVE_PLUGINS_FALSE,;t t
  33528. s,@HAVE_BUILTINS_TRUE@,$HAVE_BUILTINS_TRUE,;t t
  33529. s,@HAVE_BUILTINS_FALSE@,$HAVE_BUILTINS_FALSE,;t t
  33530. s,@access_file_plugin_TRUE@,$access_file_plugin_TRUE,;t t
  33531. s,@access_file_plugin_FALSE@,$access_file_plugin_FALSE,;t t
  33532. s,@access_file_builtin_TRUE@,$access_file_builtin_TRUE,;t t
  33533. s,@access_file_builtin_FALSE@,$access_file_builtin_FALSE,;t t
  33534. s,@access_directory_plugin_TRUE@,$access_directory_plugin_TRUE,;t t
  33535. s,@access_directory_plugin_FALSE@,$access_directory_plugin_FALSE,;t t
  33536. s,@access_directory_builtin_TRUE@,$access_directory_builtin_TRUE,;t t
  33537. s,@access_directory_builtin_FALSE@,$access_directory_builtin_FALSE,;t t
  33538. s,@LDFLAGS_access_udp@,$LDFLAGS_access_udp,;t t
  33539. s,@access_udp_plugin_TRUE@,$access_udp_plugin_TRUE,;t t
  33540. s,@access_udp_plugin_FALSE@,$access_udp_plugin_FALSE,;t t
  33541. s,@access_udp_builtin_TRUE@,$access_udp_builtin_TRUE,;t t
  33542. s,@access_udp_builtin_FALSE@,$access_udp_builtin_FALSE,;t t
  33543. s,@LDFLAGS_access_http@,$LDFLAGS_access_http,;t t
  33544. s,@access_http_plugin_TRUE@,$access_http_plugin_TRUE,;t t
  33545. s,@access_http_plugin_FALSE@,$access_http_plugin_FALSE,;t t
  33546. s,@access_http_builtin_TRUE@,$access_http_builtin_TRUE,;t t
  33547. s,@access_http_builtin_FALSE@,$access_http_builtin_FALSE,;t t
  33548. s,@LDFLAGS_access_ftp@,$LDFLAGS_access_ftp,;t t
  33549. s,@access_ftp_plugin_TRUE@,$access_ftp_plugin_TRUE,;t t
  33550. s,@access_ftp_plugin_FALSE@,$access_ftp_plugin_FALSE,;t t
  33551. s,@access_ftp_builtin_TRUE@,$access_ftp_builtin_TRUE,;t t
  33552. s,@access_ftp_builtin_FALSE@,$access_ftp_builtin_FALSE,;t t
  33553. s,@CPPFLAGS_slp@,$CPPFLAGS_slp,;t t
  33554. s,@LDFLAGS_slp@,$LDFLAGS_slp,;t t
  33555. s,@slp_plugin_TRUE@,$slp_plugin_TRUE,;t t
  33556. s,@slp_plugin_FALSE@,$slp_plugin_FALSE,;t t
  33557. s,@slp_builtin_TRUE@,$slp_builtin_TRUE,;t t
  33558. s,@slp_builtin_FALSE@,$slp_builtin_FALSE,;t t
  33559. s,@CPPFLAGS_dvd@,$CPPFLAGS_dvd,;t t
  33560. s,@LDFLAGS_dvd@,$LDFLAGS_dvd,;t t
  33561. s,@dvd_plugin_TRUE@,$dvd_plugin_TRUE,;t t
  33562. s,@dvd_plugin_FALSE@,$dvd_plugin_FALSE,;t t
  33563. s,@dvd_builtin_TRUE@,$dvd_builtin_TRUE,;t t
  33564. s,@dvd_builtin_FALSE@,$dvd_builtin_FALSE,;t t
  33565. s,@CPPFLAGS_dvdplay@,$CPPFLAGS_dvdplay,;t t
  33566. s,@LDFLAGS_dvdplay@,$LDFLAGS_dvdplay,;t t
  33567. s,@dvdplay_plugin_TRUE@,$dvdplay_plugin_TRUE,;t t
  33568. s,@dvdplay_plugin_FALSE@,$dvdplay_plugin_FALSE,;t t
  33569. s,@dvdplay_builtin_TRUE@,$dvdplay_builtin_TRUE,;t t
  33570. s,@dvdplay_builtin_FALSE@,$dvdplay_builtin_FALSE,;t t
  33571. s,@CPPFLAGS_dvdread@,$CPPFLAGS_dvdread,;t t
  33572. s,@LDFLAGS_dvdread@,$LDFLAGS_dvdread,;t t
  33573. s,@dvdread_plugin_TRUE@,$dvdread_plugin_TRUE,;t t
  33574. s,@dvdread_plugin_FALSE@,$dvdread_plugin_FALSE,;t t
  33575. s,@dvdread_builtin_TRUE@,$dvdread_builtin_TRUE,;t t
  33576. s,@dvdread_builtin_FALSE@,$dvdread_builtin_FALSE,;t t
  33577. s,@LDFLAGS_access_mms@,$LDFLAGS_access_mms,;t t
  33578. s,@access_mms_plugin_TRUE@,$access_mms_plugin_TRUE,;t t
  33579. s,@access_mms_plugin_FALSE@,$access_mms_plugin_FALSE,;t t
  33580. s,@access_mms_builtin_TRUE@,$access_mms_builtin_TRUE,;t t
  33581. s,@access_mms_builtin_FALSE@,$access_mms_builtin_FALSE,;t t
  33582. s,@satellite_plugin_TRUE@,$satellite_plugin_TRUE,;t t
  33583. s,@satellite_plugin_FALSE@,$satellite_plugin_FALSE,;t t
  33584. s,@satellite_builtin_TRUE@,$satellite_builtin_TRUE,;t t
  33585. s,@satellite_builtin_FALSE@,$satellite_builtin_FALSE,;t t
  33586. s,@v4l_plugin_TRUE@,$v4l_plugin_TRUE,;t t
  33587. s,@v4l_plugin_FALSE@,$v4l_plugin_FALSE,;t t
  33588. s,@v4l_builtin_TRUE@,$v4l_builtin_TRUE,;t t
  33589. s,@v4l_builtin_FALSE@,$v4l_builtin_FALSE,;t t
  33590. s,@LDFLAGS_vcd@,$LDFLAGS_vcd,;t t
  33591. s,@vcd_plugin_TRUE@,$vcd_plugin_TRUE,;t t
  33592. s,@vcd_plugin_FALSE@,$vcd_plugin_FALSE,;t t
  33593. s,@vcd_builtin_TRUE@,$vcd_builtin_TRUE,;t t
  33594. s,@vcd_builtin_FALSE@,$vcd_builtin_FALSE,;t t
  33595. s,@access_output_dummy_plugin_TRUE@,$access_output_dummy_plugin_TRUE,;t t
  33596. s,@access_output_dummy_plugin_FALSE@,$access_output_dummy_plugin_FALSE,;t t
  33597. s,@access_output_dummy_builtin_TRUE@,$access_output_dummy_builtin_TRUE,;t t
  33598. s,@access_output_dummy_builtin_FALSE@,$access_output_dummy_builtin_FALSE,;t t
  33599. s,@access_output_file_plugin_TRUE@,$access_output_file_plugin_TRUE,;t t
  33600. s,@access_output_file_plugin_FALSE@,$access_output_file_plugin_FALSE,;t t
  33601. s,@access_output_file_builtin_TRUE@,$access_output_file_builtin_TRUE,;t t
  33602. s,@access_output_file_builtin_FALSE@,$access_output_file_builtin_FALSE,;t t
  33603. s,@LDFLAGS_access_output_udp@,$LDFLAGS_access_output_udp,;t t
  33604. s,@access_output_udp_plugin_TRUE@,$access_output_udp_plugin_TRUE,;t t
  33605. s,@access_output_udp_plugin_FALSE@,$access_output_udp_plugin_FALSE,;t t
  33606. s,@access_output_udp_builtin_TRUE@,$access_output_udp_builtin_TRUE,;t t
  33607. s,@access_output_udp_builtin_FALSE@,$access_output_udp_builtin_FALSE,;t t
  33608. s,@access_output_http_plugin_TRUE@,$access_output_http_plugin_TRUE,;t t
  33609. s,@access_output_http_plugin_FALSE@,$access_output_http_plugin_FALSE,;t t
  33610. s,@access_output_http_builtin_TRUE@,$access_output_http_builtin_TRUE,;t t
  33611. s,@access_output_http_builtin_FALSE@,$access_output_http_builtin_FALSE,;t t
  33612. s,@trivial_channel_mixer_plugin_TRUE@,$trivial_channel_mixer_plugin_TRUE,;t t
  33613. s,@trivial_channel_mixer_plugin_FALSE@,$trivial_channel_mixer_plugin_FALSE,;t t
  33614. s,@trivial_channel_mixer_builtin_TRUE@,$trivial_channel_mixer_builtin_TRUE,;t t
  33615. s,@trivial_channel_mixer_builtin_FALSE@,$trivial_channel_mixer_builtin_FALSE,;t t
  33616. s,@LDFLAGS_headphone_channel_mixer@,$LDFLAGS_headphone_channel_mixer,;t t
  33617. s,@headphone_channel_mixer_plugin_TRUE@,$headphone_channel_mixer_plugin_TRUE,;t t
  33618. s,@headphone_channel_mixer_plugin_FALSE@,$headphone_channel_mixer_plugin_FALSE,;t t
  33619. s,@headphone_channel_mixer_builtin_TRUE@,$headphone_channel_mixer_builtin_TRUE,;t t
  33620. s,@headphone_channel_mixer_builtin_FALSE@,$headphone_channel_mixer_builtin_FALSE,;t t
  33621. s,@float32tos16_plugin_TRUE@,$float32tos16_plugin_TRUE,;t t
  33622. s,@float32tos16_plugin_FALSE@,$float32tos16_plugin_FALSE,;t t
  33623. s,@float32tos16_builtin_TRUE@,$float32tos16_builtin_TRUE,;t t
  33624. s,@float32tos16_builtin_FALSE@,$float32tos16_builtin_FALSE,;t t
  33625. s,@float32tos8_plugin_TRUE@,$float32tos8_plugin_TRUE,;t t
  33626. s,@float32tos8_plugin_FALSE@,$float32tos8_plugin_FALSE,;t t
  33627. s,@float32tos8_builtin_TRUE@,$float32tos8_builtin_TRUE,;t t
  33628. s,@float32tos8_builtin_FALSE@,$float32tos8_builtin_FALSE,;t t
  33629. s,@float32tou16_plugin_TRUE@,$float32tou16_plugin_TRUE,;t t
  33630. s,@float32tou16_plugin_FALSE@,$float32tou16_plugin_FALSE,;t t
  33631. s,@float32tou16_builtin_TRUE@,$float32tou16_builtin_TRUE,;t t
  33632. s,@float32tou16_builtin_FALSE@,$float32tou16_builtin_FALSE,;t t
  33633. s,@float32tou8_plugin_TRUE@,$float32tou8_plugin_TRUE,;t t
  33634. s,@float32tou8_plugin_FALSE@,$float32tou8_plugin_FALSE,;t t
  33635. s,@float32tou8_builtin_TRUE@,$float32tou8_builtin_TRUE,;t t
  33636. s,@float32tou8_builtin_FALSE@,$float32tou8_builtin_FALSE,;t t
  33637. s,@a52tospdif_plugin_TRUE@,$a52tospdif_plugin_TRUE,;t t
  33638. s,@a52tospdif_plugin_FALSE@,$a52tospdif_plugin_FALSE,;t t
  33639. s,@a52tospdif_builtin_TRUE@,$a52tospdif_builtin_TRUE,;t t
  33640. s,@a52tospdif_builtin_FALSE@,$a52tospdif_builtin_FALSE,;t t
  33641. s,@CPPFLAGS_a52tofloat32@,$CPPFLAGS_a52tofloat32,;t t
  33642. s,@LDFLAGS_a52tofloat32@,$LDFLAGS_a52tofloat32,;t t
  33643. s,@a52tofloat32_plugin_TRUE@,$a52tofloat32_plugin_TRUE,;t t
  33644. s,@a52tofloat32_plugin_FALSE@,$a52tofloat32_plugin_FALSE,;t t
  33645. s,@a52tofloat32_builtin_TRUE@,$a52tofloat32_builtin_TRUE,;t t
  33646. s,@a52tofloat32_builtin_FALSE@,$a52tofloat32_builtin_FALSE,;t t
  33647. s,@dtstospdif_plugin_TRUE@,$dtstospdif_plugin_TRUE,;t t
  33648. s,@dtstospdif_plugin_FALSE@,$dtstospdif_plugin_FALSE,;t t
  33649. s,@dtstospdif_builtin_TRUE@,$dtstospdif_builtin_TRUE,;t t
  33650. s,@dtstospdif_builtin_FALSE@,$dtstospdif_builtin_FALSE,;t t
  33651. s,@fixed32tos16_plugin_TRUE@,$fixed32tos16_plugin_TRUE,;t t
  33652. s,@fixed32tos16_plugin_FALSE@,$fixed32tos16_plugin_FALSE,;t t
  33653. s,@fixed32tos16_builtin_TRUE@,$fixed32tos16_builtin_TRUE,;t t
  33654. s,@fixed32tos16_builtin_FALSE@,$fixed32tos16_builtin_FALSE,;t t
  33655. s,@s16tofixed32_plugin_TRUE@,$s16tofixed32_plugin_TRUE,;t t
  33656. s,@s16tofixed32_plugin_FALSE@,$s16tofixed32_plugin_FALSE,;t t
  33657. s,@s16tofixed32_builtin_TRUE@,$s16tofixed32_builtin_TRUE,;t t
  33658. s,@s16tofixed32_builtin_FALSE@,$s16tofixed32_builtin_FALSE,;t t
  33659. s,@fixed32tofloat32_plugin_TRUE@,$fixed32tofloat32_plugin_TRUE,;t t
  33660. s,@fixed32tofloat32_plugin_FALSE@,$fixed32tofloat32_plugin_FALSE,;t t
  33661. s,@fixed32tofloat32_builtin_TRUE@,$fixed32tofloat32_builtin_TRUE,;t t
  33662. s,@fixed32tofloat32_builtin_FALSE@,$fixed32tofloat32_builtin_FALSE,;t t
  33663. s,@s16tofloat32_plugin_TRUE@,$s16tofloat32_plugin_TRUE,;t t
  33664. s,@s16tofloat32_plugin_FALSE@,$s16tofloat32_plugin_FALSE,;t t
  33665. s,@s16tofloat32_builtin_TRUE@,$s16tofloat32_builtin_TRUE,;t t
  33666. s,@s16tofloat32_builtin_FALSE@,$s16tofloat32_builtin_FALSE,;t t
  33667. s,@s16tofloat32swab_plugin_TRUE@,$s16tofloat32swab_plugin_TRUE,;t t
  33668. s,@s16tofloat32swab_plugin_FALSE@,$s16tofloat32swab_plugin_FALSE,;t t
  33669. s,@s16tofloat32swab_builtin_TRUE@,$s16tofloat32swab_builtin_TRUE,;t t
  33670. s,@s16tofloat32swab_builtin_FALSE@,$s16tofloat32swab_builtin_FALSE,;t t
  33671. s,@s8tofloat32_plugin_TRUE@,$s8tofloat32_plugin_TRUE,;t t
  33672. s,@s8tofloat32_plugin_FALSE@,$s8tofloat32_plugin_FALSE,;t t
  33673. s,@s8tofloat32_builtin_TRUE@,$s8tofloat32_builtin_TRUE,;t t
  33674. s,@s8tofloat32_builtin_FALSE@,$s8tofloat32_builtin_FALSE,;t t
  33675. s,@u8tofixed32_plugin_TRUE@,$u8tofixed32_plugin_TRUE,;t t
  33676. s,@u8tofixed32_plugin_FALSE@,$u8tofixed32_plugin_FALSE,;t t
  33677. s,@u8tofixed32_builtin_TRUE@,$u8tofixed32_builtin_TRUE,;t t
  33678. s,@u8tofixed32_builtin_FALSE@,$u8tofixed32_builtin_FALSE,;t t
  33679. s,@u8tofloat32_plugin_TRUE@,$u8tofloat32_plugin_TRUE,;t t
  33680. s,@u8tofloat32_plugin_FALSE@,$u8tofloat32_plugin_FALSE,;t t
  33681. s,@u8tofloat32_builtin_TRUE@,$u8tofloat32_builtin_TRUE,;t t
  33682. s,@u8tofloat32_builtin_FALSE@,$u8tofloat32_builtin_FALSE,;t t
  33683. s,@CPPFLAGS_mpgatofixed32@,$CPPFLAGS_mpgatofixed32,;t t
  33684. s,@LDFLAGS_mpgatofixed32@,$LDFLAGS_mpgatofixed32,;t t
  33685. s,@mpgatofixed32_plugin_TRUE@,$mpgatofixed32_plugin_TRUE,;t t
  33686. s,@mpgatofixed32_plugin_FALSE@,$mpgatofixed32_plugin_FALSE,;t t
  33687. s,@mpgatofixed32_builtin_TRUE@,$mpgatofixed32_builtin_TRUE,;t t
  33688. s,@mpgatofixed32_builtin_FALSE@,$mpgatofixed32_builtin_FALSE,;t t
  33689. s,@trivial_resampler_plugin_TRUE@,$trivial_resampler_plugin_TRUE,;t t
  33690. s,@trivial_resampler_plugin_FALSE@,$trivial_resampler_plugin_FALSE,;t t
  33691. s,@trivial_resampler_builtin_TRUE@,$trivial_resampler_builtin_TRUE,;t t
  33692. s,@trivial_resampler_builtin_FALSE@,$trivial_resampler_builtin_FALSE,;t t
  33693. s,@ugly_resampler_plugin_TRUE@,$ugly_resampler_plugin_TRUE,;t t
  33694. s,@ugly_resampler_plugin_FALSE@,$ugly_resampler_plugin_FALSE,;t t
  33695. s,@ugly_resampler_builtin_TRUE@,$ugly_resampler_builtin_TRUE,;t t
  33696. s,@ugly_resampler_builtin_FALSE@,$ugly_resampler_builtin_FALSE,;t t
  33697. s,@linear_resampler_plugin_TRUE@,$linear_resampler_plugin_TRUE,;t t
  33698. s,@linear_resampler_plugin_FALSE@,$linear_resampler_plugin_FALSE,;t t
  33699. s,@linear_resampler_builtin_TRUE@,$linear_resampler_builtin_TRUE,;t t
  33700. s,@linear_resampler_builtin_FALSE@,$linear_resampler_builtin_FALSE,;t t
  33701. s,@bandlimited_resampler_plugin_TRUE@,$bandlimited_resampler_plugin_TRUE,;t t
  33702. s,@bandlimited_resampler_plugin_FALSE@,$bandlimited_resampler_plugin_FALSE,;t t
  33703. s,@bandlimited_resampler_builtin_TRUE@,$bandlimited_resampler_builtin_TRUE,;t t
  33704. s,@bandlimited_resampler_builtin_FALSE@,$bandlimited_resampler_builtin_FALSE,;t t
  33705. s,@LDFLAGS_coreaudio_resampler@,$LDFLAGS_coreaudio_resampler,;t t
  33706. s,@coreaudio_resampler_plugin_TRUE@,$coreaudio_resampler_plugin_TRUE,;t t
  33707. s,@coreaudio_resampler_plugin_FALSE@,$coreaudio_resampler_plugin_FALSE,;t t
  33708. s,@coreaudio_resampler_builtin_TRUE@,$coreaudio_resampler_builtin_TRUE,;t t
  33709. s,@coreaudio_resampler_builtin_FALSE@,$coreaudio_resampler_builtin_FALSE,;t t
  33710. s,@trivial_mixer_plugin_TRUE@,$trivial_mixer_plugin_TRUE,;t t
  33711. s,@trivial_mixer_plugin_FALSE@,$trivial_mixer_plugin_FALSE,;t t
  33712. s,@trivial_mixer_builtin_TRUE@,$trivial_mixer_builtin_TRUE,;t t
  33713. s,@trivial_mixer_builtin_FALSE@,$trivial_mixer_builtin_FALSE,;t t
  33714. s,@float32_mixer_plugin_TRUE@,$float32_mixer_plugin_TRUE,;t t
  33715. s,@float32_mixer_plugin_FALSE@,$float32_mixer_plugin_FALSE,;t t
  33716. s,@float32_mixer_builtin_TRUE@,$float32_mixer_builtin_TRUE,;t t
  33717. s,@float32_mixer_builtin_FALSE@,$float32_mixer_builtin_FALSE,;t t
  33718. s,@spdif_mixer_plugin_TRUE@,$spdif_mixer_plugin_TRUE,;t t
  33719. s,@spdif_mixer_plugin_FALSE@,$spdif_mixer_plugin_FALSE,;t t
  33720. s,@spdif_mixer_builtin_TRUE@,$spdif_mixer_builtin_TRUE,;t t
  33721. s,@spdif_mixer_builtin_FALSE@,$spdif_mixer_builtin_FALSE,;t t
  33722. s,@LDFLAGS_alsa@,$LDFLAGS_alsa,;t t
  33723. s,@alsa_plugin_TRUE@,$alsa_plugin_TRUE,;t t
  33724. s,@alsa_plugin_FALSE@,$alsa_plugin_FALSE,;t t
  33725. s,@alsa_builtin_TRUE@,$alsa_builtin_TRUE,;t t
  33726. s,@alsa_builtin_FALSE@,$alsa_builtin_FALSE,;t t
  33727. s,@CFLAGS_arts@,$CFLAGS_arts,;t t
  33728. s,@LDFLAGS_arts@,$LDFLAGS_arts,;t t
  33729. s,@arts_plugin_TRUE@,$arts_plugin_TRUE,;t t
  33730. s,@arts_plugin_FALSE@,$arts_plugin_FALSE,;t t
  33731. s,@arts_builtin_TRUE@,$arts_builtin_TRUE,;t t
  33732. s,@arts_builtin_FALSE@,$arts_builtin_FALSE,;t t
  33733. s,@LDFLAGS_coreaudio@,$LDFLAGS_coreaudio,;t t
  33734. s,@coreaudio_plugin_TRUE@,$coreaudio_plugin_TRUE,;t t
  33735. s,@coreaudio_plugin_FALSE@,$coreaudio_plugin_FALSE,;t t
  33736. s,@coreaudio_builtin_TRUE@,$coreaudio_builtin_TRUE,;t t
  33737. s,@coreaudio_builtin_FALSE@,$coreaudio_builtin_FALSE,;t t
  33738. s,@CPPFLAGS_aout_directx@,$CPPFLAGS_aout_directx,;t t
  33739. s,@aout_directx_plugin_TRUE@,$aout_directx_plugin_TRUE,;t t
  33740. s,@aout_directx_plugin_FALSE@,$aout_directx_plugin_FALSE,;t t
  33741. s,@aout_directx_builtin_TRUE@,$aout_directx_builtin_TRUE,;t t
  33742. s,@aout_directx_builtin_FALSE@,$aout_directx_builtin_FALSE,;t t
  33743. s,@CFLAGS_esd@,$CFLAGS_esd,;t t
  33744. s,@LDFLAGS_esd@,$LDFLAGS_esd,;t t
  33745. s,@esd_plugin_TRUE@,$esd_plugin_TRUE,;t t
  33746. s,@esd_plugin_FALSE@,$esd_plugin_FALSE,;t t
  33747. s,@esd_builtin_TRUE@,$esd_builtin_TRUE,;t t
  33748. s,@esd_builtin_FALSE@,$esd_builtin_FALSE,;t t
  33749. s,@aout_file_plugin_TRUE@,$aout_file_plugin_TRUE,;t t
  33750. s,@aout_file_plugin_FALSE@,$aout_file_plugin_FALSE,;t t
  33751. s,@aout_file_builtin_TRUE@,$aout_file_builtin_TRUE,;t t
  33752. s,@aout_file_builtin_FALSE@,$aout_file_builtin_FALSE,;t t
  33753. s,@oss_plugin_TRUE@,$oss_plugin_TRUE,;t t
  33754. s,@oss_plugin_FALSE@,$oss_plugin_FALSE,;t t
  33755. s,@oss_builtin_TRUE@,$oss_builtin_TRUE,;t t
  33756. s,@oss_builtin_FALSE@,$oss_builtin_FALSE,;t t
  33757. s,@CFLAGS_aout_sdl@,$CFLAGS_aout_sdl,;t t
  33758. s,@LDFLAGS_aout_sdl@,$LDFLAGS_aout_sdl,;t t
  33759. s,@aout_sdl_plugin_TRUE@,$aout_sdl_plugin_TRUE,;t t
  33760. s,@aout_sdl_plugin_FALSE@,$aout_sdl_plugin_FALSE,;t t
  33761. s,@aout_sdl_builtin_TRUE@,$aout_sdl_builtin_TRUE,;t t
  33762. s,@aout_sdl_builtin_FALSE@,$aout_sdl_builtin_FALSE,;t t
  33763. s,@LDFLAGS_waveout@,$LDFLAGS_waveout,;t t
  33764. s,@waveout_plugin_TRUE@,$waveout_plugin_TRUE,;t t
  33765. s,@waveout_plugin_FALSE@,$waveout_plugin_FALSE,;t t
  33766. s,@waveout_builtin_TRUE@,$waveout_builtin_TRUE,;t t
  33767. s,@waveout_builtin_FALSE@,$waveout_builtin_FALSE,;t t
  33768. s,@a52_plugin_TRUE@,$a52_plugin_TRUE,;t t
  33769. s,@a52_plugin_FALSE@,$a52_plugin_FALSE,;t t
  33770. s,@a52_builtin_TRUE@,$a52_builtin_TRUE,;t t
  33771. s,@a52_builtin_FALSE@,$a52_builtin_FALSE,;t t
  33772. s,@dts_plugin_TRUE@,$dts_plugin_TRUE,;t t
  33773. s,@dts_plugin_FALSE@,$dts_plugin_FALSE,;t t
  33774. s,@dts_builtin_TRUE@,$dts_builtin_TRUE,;t t
  33775. s,@dts_builtin_FALSE@,$dts_builtin_FALSE,;t t
  33776. s,@LDFLAGS_flacdec@,$LDFLAGS_flacdec,;t t
  33777. s,@flacdec_plugin_TRUE@,$flacdec_plugin_TRUE,;t t
  33778. s,@flacdec_plugin_FALSE@,$flacdec_plugin_FALSE,;t t
  33779. s,@flacdec_builtin_TRUE@,$flacdec_builtin_TRUE,;t t
  33780. s,@flacdec_builtin_FALSE@,$flacdec_builtin_FALSE,;t t
  33781. s,@lpcm_plugin_TRUE@,$lpcm_plugin_TRUE,;t t
  33782. s,@lpcm_plugin_FALSE@,$lpcm_plugin_FALSE,;t t
  33783. s,@lpcm_builtin_TRUE@,$lpcm_builtin_TRUE,;t t
  33784. s,@lpcm_builtin_FALSE@,$lpcm_builtin_FALSE,;t t
  33785. s,@araw_plugin_TRUE@,$araw_plugin_TRUE,;t t
  33786. s,@araw_plugin_FALSE@,$araw_plugin_FALSE,;t t
  33787. s,@araw_builtin_TRUE@,$araw_builtin_TRUE,;t t
  33788. s,@araw_builtin_FALSE@,$araw_builtin_FALSE,;t t
  33789. s,@LDFLAGS_vorbis@,$LDFLAGS_vorbis,;t t
  33790. s,@vorbis_plugin_TRUE@,$vorbis_plugin_TRUE,;t t
  33791. s,@vorbis_plugin_FALSE@,$vorbis_plugin_FALSE,;t t
  33792. s,@vorbis_builtin_TRUE@,$vorbis_builtin_TRUE,;t t
  33793. s,@vorbis_builtin_FALSE@,$vorbis_builtin_FALSE,;t t
  33794. s,@CPPFLAGS_tarkin@,$CPPFLAGS_tarkin,;t t
  33795. s,@LDFLAGS_tarkin@,$LDFLAGS_tarkin,;t t
  33796. s,@tarkin_plugin_TRUE@,$tarkin_plugin_TRUE,;t t
  33797. s,@tarkin_plugin_FALSE@,$tarkin_plugin_FALSE,;t t
  33798. s,@tarkin_builtin_TRUE@,$tarkin_builtin_TRUE,;t t
  33799. s,@tarkin_builtin_FALSE@,$tarkin_builtin_FALSE,;t t
  33800. s,@LDFLAGS_theora@,$LDFLAGS_theora,;t t
  33801. s,@theora_plugin_TRUE@,$theora_plugin_TRUE,;t t
  33802. s,@theora_plugin_FALSE@,$theora_plugin_FALSE,;t t
  33803. s,@theora_builtin_TRUE@,$theora_builtin_TRUE,;t t
  33804. s,@theora_builtin_FALSE@,$theora_builtin_FALSE,;t t
  33805. s,@LDFLAGS_tremor@,$LDFLAGS_tremor,;t t
  33806. s,@tremor_plugin_TRUE@,$tremor_plugin_TRUE,;t t
  33807. s,@tremor_plugin_FALSE@,$tremor_plugin_FALSE,;t t
  33808. s,@tremor_builtin_TRUE@,$tremor_builtin_TRUE,;t t
  33809. s,@tremor_builtin_FALSE@,$tremor_builtin_FALSE,;t t
  33810. s,@LDFLAGS_dv@,$LDFLAGS_dv,;t t
  33811. s,@dv_plugin_TRUE@,$dv_plugin_TRUE,;t t
  33812. s,@dv_plugin_FALSE@,$dv_plugin_FALSE,;t t
  33813. s,@dv_builtin_TRUE@,$dv_builtin_TRUE,;t t
  33814. s,@dv_builtin_FALSE@,$dv_builtin_FALSE,;t t
  33815. s,@CPPFLAGS_xvid@,$CPPFLAGS_xvid,;t t
  33816. s,@LDFLAGS_xvid@,$LDFLAGS_xvid,;t t
  33817. s,@xvid_plugin_TRUE@,$xvid_plugin_TRUE,;t t
  33818. s,@xvid_plugin_FALSE@,$xvid_plugin_FALSE,;t t
  33819. s,@xvid_builtin_TRUE@,$xvid_builtin_TRUE,;t t
  33820. s,@xvid_builtin_FALSE@,$xvid_builtin_FALSE,;t t
  33821. s,@adpcm_plugin_TRUE@,$adpcm_plugin_TRUE,;t t
  33822. s,@adpcm_plugin_FALSE@,$adpcm_plugin_FALSE,;t t
  33823. s,@adpcm_builtin_TRUE@,$adpcm_builtin_TRUE,;t t
  33824. s,@adpcm_builtin_FALSE@,$adpcm_builtin_FALSE,;t t
  33825. s,@mpeg_audio_plugin_TRUE@,$mpeg_audio_plugin_TRUE,;t t
  33826. s,@mpeg_audio_plugin_FALSE@,$mpeg_audio_plugin_FALSE,;t t
  33827. s,@mpeg_audio_builtin_TRUE@,$mpeg_audio_builtin_TRUE,;t t
  33828. s,@mpeg_audio_builtin_FALSE@,$mpeg_audio_builtin_FALSE,;t t
  33829. s,@LDFLAGS_libmpeg2@,$LDFLAGS_libmpeg2,;t t
  33830. s,@libmpeg2_plugin_TRUE@,$libmpeg2_plugin_TRUE,;t t
  33831. s,@libmpeg2_plugin_FALSE@,$libmpeg2_plugin_FALSE,;t t
  33832. s,@libmpeg2_builtin_TRUE@,$libmpeg2_builtin_TRUE,;t t
  33833. s,@libmpeg2_builtin_FALSE@,$libmpeg2_builtin_FALSE,;t t
  33834. s,@rawvideo_plugin_TRUE@,$rawvideo_plugin_TRUE,;t t
  33835. s,@rawvideo_plugin_FALSE@,$rawvideo_plugin_FALSE,;t t
  33836. s,@rawvideo_builtin_TRUE@,$rawvideo_builtin_TRUE,;t t
  33837. s,@rawvideo_builtin_FALSE@,$rawvideo_builtin_FALSE,;t t
  33838. s,@a52old_plugin_TRUE@,$a52old_plugin_TRUE,;t t
  33839. s,@a52old_plugin_FALSE@,$a52old_plugin_FALSE,;t t
  33840. s,@a52old_builtin_TRUE@,$a52old_builtin_TRUE,;t t
  33841. s,@a52old_builtin_FALSE@,$a52old_builtin_FALSE,;t t
  33842. s,@downmix_plugin_TRUE@,$downmix_plugin_TRUE,;t t
  33843. s,@downmix_plugin_FALSE@,$downmix_plugin_FALSE,;t t
  33844. s,@downmix_builtin_TRUE@,$downmix_builtin_TRUE,;t t
  33845. s,@downmix_builtin_FALSE@,$downmix_builtin_FALSE,;t t
  33846. s,@downmixsse_plugin_TRUE@,$downmixsse_plugin_TRUE,;t t
  33847. s,@downmixsse_plugin_FALSE@,$downmixsse_plugin_FALSE,;t t
  33848. s,@downmixsse_builtin_TRUE@,$downmixsse_builtin_TRUE,;t t
  33849. s,@downmixsse_builtin_FALSE@,$downmixsse_builtin_FALSE,;t t
  33850. s,@downmix3dn_plugin_TRUE@,$downmix3dn_plugin_TRUE,;t t
  33851. s,@downmix3dn_plugin_FALSE@,$downmix3dn_plugin_FALSE,;t t
  33852. s,@downmix3dn_builtin_TRUE@,$downmix3dn_builtin_TRUE,;t t
  33853. s,@downmix3dn_builtin_FALSE@,$downmix3dn_builtin_FALSE,;t t
  33854. s,@LDFLAGS_imdct@,$LDFLAGS_imdct,;t t
  33855. s,@imdct_plugin_TRUE@,$imdct_plugin_TRUE,;t t
  33856. s,@imdct_plugin_FALSE@,$imdct_plugin_FALSE,;t t
  33857. s,@imdct_builtin_TRUE@,$imdct_builtin_TRUE,;t t
  33858. s,@imdct_builtin_FALSE@,$imdct_builtin_FALSE,;t t
  33859. s,@LDFLAGS_imdctsse@,$LDFLAGS_imdctsse,;t t
  33860. s,@imdctsse_plugin_TRUE@,$imdctsse_plugin_TRUE,;t t
  33861. s,@imdctsse_plugin_FALSE@,$imdctsse_plugin_FALSE,;t t
  33862. s,@imdctsse_builtin_TRUE@,$imdctsse_builtin_TRUE,;t t
  33863. s,@imdctsse_builtin_FALSE@,$imdctsse_builtin_FALSE,;t t
  33864. s,@LDFLAGS_imdct3dn@,$LDFLAGS_imdct3dn,;t t
  33865. s,@imdct3dn_plugin_TRUE@,$imdct3dn_plugin_TRUE,;t t
  33866. s,@imdct3dn_plugin_FALSE@,$imdct3dn_plugin_FALSE,;t t
  33867. s,@imdct3dn_builtin_TRUE@,$imdct3dn_builtin_TRUE,;t t
  33868. s,@imdct3dn_builtin_FALSE@,$imdct3dn_builtin_FALSE,;t t
  33869. s,@cinepak_plugin_TRUE@,$cinepak_plugin_TRUE,;t t
  33870. s,@cinepak_plugin_FALSE@,$cinepak_plugin_FALSE,;t t
  33871. s,@cinepak_builtin_TRUE@,$cinepak_builtin_TRUE,;t t
  33872. s,@cinepak_builtin_FALSE@,$cinepak_builtin_FALSE,;t t
  33873. s,@CPPFLAGS_faad@,$CPPFLAGS_faad,;t t
  33874. s,@LDFLAGS_faad@,$LDFLAGS_faad,;t t
  33875. s,@faad_plugin_TRUE@,$faad_plugin_TRUE,;t t
  33876. s,@faad_plugin_FALSE@,$faad_plugin_FALSE,;t t
  33877. s,@faad_builtin_TRUE@,$faad_builtin_TRUE,;t t
  33878. s,@faad_builtin_FALSE@,$faad_builtin_FALSE,;t t
  33879. s,@CPPFLAGS_ffmpeg@,$CPPFLAGS_ffmpeg,;t t
  33880. s,@LDFLAGS_ffmpeg@,$LDFLAGS_ffmpeg,;t t
  33881. s,@ffmpeg_plugin_TRUE@,$ffmpeg_plugin_TRUE,;t t
  33882. s,@ffmpeg_plugin_FALSE@,$ffmpeg_plugin_FALSE,;t t
  33883. s,@ffmpeg_builtin_TRUE@,$ffmpeg_builtin_TRUE,;t t
  33884. s,@ffmpeg_builtin_FALSE@,$ffmpeg_builtin_FALSE,;t t
  33885. s,@postprocessing_c_plugin_TRUE@,$postprocessing_c_plugin_TRUE,;t t
  33886. s,@postprocessing_c_plugin_FALSE@,$postprocessing_c_plugin_FALSE,;t t
  33887. s,@postprocessing_c_builtin_TRUE@,$postprocessing_c_builtin_TRUE,;t t
  33888. s,@postprocessing_c_builtin_FALSE@,$postprocessing_c_builtin_FALSE,;t t
  33889. s,@postprocessing_mmx_plugin_TRUE@,$postprocessing_mmx_plugin_TRUE,;t t
  33890. s,@postprocessing_mmx_plugin_FALSE@,$postprocessing_mmx_plugin_FALSE,;t t
  33891. s,@postprocessing_mmx_builtin_TRUE@,$postprocessing_mmx_builtin_TRUE,;t t
  33892. s,@postprocessing_mmx_builtin_FALSE@,$postprocessing_mmx_builtin_FALSE,;t t
  33893. s,@postprocessing_mmxext_plugin_TRUE@,$postprocessing_mmxext_plugin_TRUE,;t t
  33894. s,@postprocessing_mmxext_plugin_FALSE@,$postprocessing_mmxext_plugin_FALSE,;t t
  33895. s,@postprocessing_mmxext_builtin_TRUE@,$postprocessing_mmxext_builtin_TRUE,;t t
  33896. s,@postprocessing_mmxext_builtin_FALSE@,$postprocessing_mmxext_builtin_FALSE,;t t
  33897. s,@CFLAGS_mpeg_video@,$CFLAGS_mpeg_video,;t t
  33898. s,@mpeg_video_plugin_TRUE@,$mpeg_video_plugin_TRUE,;t t
  33899. s,@mpeg_video_plugin_FALSE@,$mpeg_video_plugin_FALSE,;t t
  33900. s,@mpeg_video_builtin_TRUE@,$mpeg_video_builtin_TRUE,;t t
  33901. s,@mpeg_video_builtin_FALSE@,$mpeg_video_builtin_FALSE,;t t
  33902. s,@idct_plugin_TRUE@,$idct_plugin_TRUE,;t t
  33903. s,@idct_plugin_FALSE@,$idct_plugin_FALSE,;t t
  33904. s,@idct_builtin_TRUE@,$idct_builtin_TRUE,;t t
  33905. s,@idct_builtin_FALSE@,$idct_builtin_FALSE,;t t
  33906. s,@idctclassic_plugin_TRUE@,$idctclassic_plugin_TRUE,;t t
  33907. s,@idctclassic_plugin_FALSE@,$idctclassic_plugin_FALSE,;t t
  33908. s,@idctclassic_builtin_TRUE@,$idctclassic_builtin_TRUE,;t t
  33909. s,@idctclassic_builtin_FALSE@,$idctclassic_builtin_FALSE,;t t
  33910. s,@idctmmx_plugin_TRUE@,$idctmmx_plugin_TRUE,;t t
  33911. s,@idctmmx_plugin_FALSE@,$idctmmx_plugin_FALSE,;t t
  33912. s,@idctmmx_builtin_TRUE@,$idctmmx_builtin_TRUE,;t t
  33913. s,@idctmmx_builtin_FALSE@,$idctmmx_builtin_FALSE,;t t
  33914. s,@idctmmxext_plugin_TRUE@,$idctmmxext_plugin_TRUE,;t t
  33915. s,@idctmmxext_plugin_FALSE@,$idctmmxext_plugin_FALSE,;t t
  33916. s,@idctmmxext_builtin_TRUE@,$idctmmxext_builtin_TRUE,;t t
  33917. s,@idctmmxext_builtin_FALSE@,$idctmmxext_builtin_FALSE,;t t
  33918. s,@CFLAGS_idctaltivec@,$CFLAGS_idctaltivec,;t t
  33919. s,@LDFLAGS_idctaltivec@,$LDFLAGS_idctaltivec,;t t
  33920. s,@idctaltivec_plugin_TRUE@,$idctaltivec_plugin_TRUE,;t t
  33921. s,@idctaltivec_plugin_FALSE@,$idctaltivec_plugin_FALSE,;t t
  33922. s,@idctaltivec_builtin_TRUE@,$idctaltivec_builtin_TRUE,;t t
  33923. s,@idctaltivec_builtin_FALSE@,$idctaltivec_builtin_FALSE,;t t
  33924. s,@motion_plugin_TRUE@,$motion_plugin_TRUE,;t t
  33925. s,@motion_plugin_FALSE@,$motion_plugin_FALSE,;t t
  33926. s,@motion_builtin_TRUE@,$motion_builtin_TRUE,;t t
  33927. s,@motion_builtin_FALSE@,$motion_builtin_FALSE,;t t
  33928. s,@motionmmx_plugin_TRUE@,$motionmmx_plugin_TRUE,;t t
  33929. s,@motionmmx_plugin_FALSE@,$motionmmx_plugin_FALSE,;t t
  33930. s,@motionmmx_builtin_TRUE@,$motionmmx_builtin_TRUE,;t t
  33931. s,@motionmmx_builtin_FALSE@,$motionmmx_builtin_FALSE,;t t
  33932. s,@motionmmxext_plugin_TRUE@,$motionmmxext_plugin_TRUE,;t t
  33933. s,@motionmmxext_plugin_FALSE@,$motionmmxext_plugin_FALSE,;t t
  33934. s,@motionmmxext_builtin_TRUE@,$motionmmxext_builtin_TRUE,;t t
  33935. s,@motionmmxext_builtin_FALSE@,$motionmmxext_builtin_FALSE,;t t
  33936. s,@motion3dnow_plugin_TRUE@,$motion3dnow_plugin_TRUE,;t t
  33937. s,@motion3dnow_plugin_FALSE@,$motion3dnow_plugin_FALSE,;t t
  33938. s,@motion3dnow_builtin_TRUE@,$motion3dnow_builtin_TRUE,;t t
  33939. s,@motion3dnow_builtin_FALSE@,$motion3dnow_builtin_FALSE,;t t
  33940. s,@CFLAGS_motionaltivec@,$CFLAGS_motionaltivec,;t t
  33941. s,@LDFLAGS_motionaltivec@,$LDFLAGS_motionaltivec,;t t
  33942. s,@motionaltivec_plugin_TRUE@,$motionaltivec_plugin_TRUE,;t t
  33943. s,@motionaltivec_plugin_FALSE@,$motionaltivec_plugin_FALSE,;t t
  33944. s,@motionaltivec_builtin_TRUE@,$motionaltivec_builtin_TRUE,;t t
  33945. s,@motionaltivec_builtin_FALSE@,$motionaltivec_builtin_FALSE,;t t
  33946. s,@spudec_plugin_TRUE@,$spudec_plugin_TRUE,;t t
  33947. s,@spudec_plugin_FALSE@,$spudec_plugin_FALSE,;t t
  33948. s,@spudec_builtin_TRUE@,$spudec_builtin_TRUE,;t t
  33949. s,@spudec_builtin_FALSE@,$spudec_builtin_FALSE,;t t
  33950. s,@LDFLAGS_lirc@,$LDFLAGS_lirc,;t t
  33951. s,@lirc_plugin_TRUE@,$lirc_plugin_TRUE,;t t
  33952. s,@lirc_plugin_FALSE@,$lirc_plugin_FALSE,;t t
  33953. s,@lirc_builtin_TRUE@,$lirc_builtin_TRUE,;t t
  33954. s,@lirc_builtin_FALSE@,$lirc_builtin_FALSE,;t t
  33955. s,@rc_plugin_TRUE@,$rc_plugin_TRUE,;t t
  33956. s,@rc_plugin_FALSE@,$rc_plugin_FALSE,;t t
  33957. s,@rc_builtin_TRUE@,$rc_builtin_TRUE,;t t
  33958. s,@rc_builtin_FALSE@,$rc_builtin_FALSE,;t t
  33959. s,@gestures_plugin_TRUE@,$gestures_plugin_TRUE,;t t
  33960. s,@gestures_plugin_FALSE@,$gestures_plugin_FALSE,;t t
  33961. s,@gestures_builtin_TRUE@,$gestures_builtin_TRUE,;t t
  33962. s,@gestures_builtin_FALSE@,$gestures_builtin_FALSE,;t t
  33963. s,@a52sys_plugin_TRUE@,$a52sys_plugin_TRUE,;t t
  33964. s,@a52sys_plugin_FALSE@,$a52sys_plugin_FALSE,;t t
  33965. s,@a52sys_builtin_TRUE@,$a52sys_builtin_TRUE,;t t
  33966. s,@a52sys_builtin_FALSE@,$a52sys_builtin_FALSE,;t t
  33967. s,@flac_plugin_TRUE@,$flac_plugin_TRUE,;t t
  33968. s,@flac_plugin_FALSE@,$flac_plugin_FALSE,;t t
  33969. s,@flac_builtin_TRUE@,$flac_builtin_TRUE,;t t
  33970. s,@flac_builtin_FALSE@,$flac_builtin_FALSE,;t t
  33971. s,@CPPFLAGS_ogg@,$CPPFLAGS_ogg,;t t
  33972. s,@LDFLAGS_ogg@,$LDFLAGS_ogg,;t t
  33973. s,@ogg_plugin_TRUE@,$ogg_plugin_TRUE,;t t
  33974. s,@ogg_plugin_FALSE@,$ogg_plugin_FALSE,;t t
  33975. s,@ogg_builtin_TRUE@,$ogg_builtin_TRUE,;t t
  33976. s,@ogg_builtin_FALSE@,$ogg_builtin_FALSE,;t t
  33977. s,@m3u_plugin_TRUE@,$m3u_plugin_TRUE,;t t
  33978. s,@m3u_plugin_FALSE@,$m3u_plugin_FALSE,;t t
  33979. s,@m3u_builtin_TRUE@,$m3u_builtin_TRUE,;t t
  33980. s,@m3u_builtin_FALSE@,$m3u_builtin_FALSE,;t t
  33981. s,@demuxdump_plugin_TRUE@,$demuxdump_plugin_TRUE,;t t
  33982. s,@demuxdump_plugin_FALSE@,$demuxdump_plugin_FALSE,;t t
  33983. s,@demuxdump_builtin_TRUE@,$demuxdump_builtin_TRUE,;t t
  33984. s,@demuxdump_builtin_FALSE@,$demuxdump_builtin_FALSE,;t t
  33985. s,@rawdv_plugin_TRUE@,$rawdv_plugin_TRUE,;t t
  33986. s,@rawdv_plugin_FALSE@,$rawdv_plugin_FALSE,;t t
  33987. s,@rawdv_builtin_TRUE@,$rawdv_builtin_TRUE,;t t
  33988. s,@rawdv_builtin_FALSE@,$rawdv_builtin_FALSE,;t t
  33989. s,@au_plugin_TRUE@,$au_plugin_TRUE,;t t
  33990. s,@au_plugin_FALSE@,$au_plugin_FALSE,;t t
  33991. s,@au_builtin_TRUE@,$au_builtin_TRUE,;t t
  33992. s,@au_builtin_FALSE@,$au_builtin_FALSE,;t t
  33993. s,@aac_plugin_TRUE@,$aac_plugin_TRUE,;t t
  33994. s,@aac_plugin_FALSE@,$aac_plugin_FALSE,;t t
  33995. s,@aac_builtin_TRUE@,$aac_builtin_TRUE,;t t
  33996. s,@aac_builtin_FALSE@,$aac_builtin_FALSE,;t t
  33997. s,@avi_plugin_TRUE@,$avi_plugin_TRUE,;t t
  33998. s,@avi_plugin_FALSE@,$avi_plugin_FALSE,;t t
  33999. s,@avi_builtin_TRUE@,$avi_builtin_TRUE,;t t
  34000. s,@avi_builtin_FALSE@,$avi_builtin_FALSE,;t t
  34001. s,@asf_plugin_TRUE@,$asf_plugin_TRUE,;t t
  34002. s,@asf_plugin_FALSE@,$asf_plugin_FALSE,;t t
  34003. s,@asf_builtin_TRUE@,$asf_builtin_TRUE,;t t
  34004. s,@asf_builtin_FALSE@,$asf_builtin_FALSE,;t t
  34005. s,@LDFLAGS_mp4@,$LDFLAGS_mp4,;t t
  34006. s,@mp4_plugin_TRUE@,$mp4_plugin_TRUE,;t t
  34007. s,@mp4_plugin_FALSE@,$mp4_plugin_FALSE,;t t
  34008. s,@mp4_builtin_TRUE@,$mp4_builtin_TRUE,;t t
  34009. s,@mp4_builtin_FALSE@,$mp4_builtin_FALSE,;t t
  34010. s,@mpeg_system_plugin_TRUE@,$mpeg_system_plugin_TRUE,;t t
  34011. s,@mpeg_system_plugin_FALSE@,$mpeg_system_plugin_FALSE,;t t
  34012. s,@mpeg_system_builtin_TRUE@,$mpeg_system_builtin_TRUE,;t t
  34013. s,@mpeg_system_builtin_FALSE@,$mpeg_system_builtin_FALSE,;t t
  34014. s,@es_plugin_TRUE@,$es_plugin_TRUE,;t t
  34015. s,@es_plugin_FALSE@,$es_plugin_FALSE,;t t
  34016. s,@es_builtin_TRUE@,$es_builtin_TRUE,;t t
  34017. s,@es_builtin_FALSE@,$es_builtin_FALSE,;t t
  34018. s,@m4v_plugin_TRUE@,$m4v_plugin_TRUE,;t t
  34019. s,@m4v_plugin_FALSE@,$m4v_plugin_FALSE,;t t
  34020. s,@m4v_builtin_TRUE@,$m4v_builtin_TRUE,;t t
  34021. s,@m4v_builtin_FALSE@,$m4v_builtin_FALSE,;t t
  34022. s,@ps_plugin_TRUE@,$ps_plugin_TRUE,;t t
  34023. s,@ps_plugin_FALSE@,$ps_plugin_FALSE,;t t
  34024. s,@ps_builtin_TRUE@,$ps_builtin_TRUE,;t t
  34025. s,@ps_builtin_FALSE@,$ps_builtin_FALSE,;t t
  34026. s,@ts_plugin_TRUE@,$ts_plugin_TRUE,;t t
  34027. s,@ts_plugin_FALSE@,$ts_plugin_FALSE,;t t
  34028. s,@ts_builtin_TRUE@,$ts_builtin_TRUE,;t t
  34029. s,@ts_builtin_FALSE@,$ts_builtin_FALSE,;t t
  34030. s,@CPPFLAGS_ts_dvbpsi@,$CPPFLAGS_ts_dvbpsi,;t t
  34031. s,@LDFLAGS_ts_dvbpsi@,$LDFLAGS_ts_dvbpsi,;t t
  34032. s,@ts_dvbpsi_plugin_TRUE@,$ts_dvbpsi_plugin_TRUE,;t t
  34033. s,@ts_dvbpsi_plugin_FALSE@,$ts_dvbpsi_plugin_FALSE,;t t
  34034. s,@ts_dvbpsi_builtin_TRUE@,$ts_dvbpsi_builtin_TRUE,;t t
  34035. s,@ts_dvbpsi_builtin_FALSE@,$ts_dvbpsi_builtin_FALSE,;t t
  34036. s,@audio_plugin_TRUE@,$audio_plugin_TRUE,;t t
  34037. s,@audio_plugin_FALSE@,$audio_plugin_FALSE,;t t
  34038. s,@audio_builtin_TRUE@,$audio_builtin_TRUE,;t t
  34039. s,@audio_builtin_FALSE@,$audio_builtin_FALSE,;t t
  34040. s,@id3_plugin_TRUE@,$id3_plugin_TRUE,;t t
  34041. s,@id3_plugin_FALSE@,$id3_plugin_FALSE,;t t
  34042. s,@id3_builtin_TRUE@,$id3_builtin_TRUE,;t t
  34043. s,@id3_builtin_FALSE@,$id3_builtin_FALSE,;t t
  34044. s,@LDFLAGS_id3tag@,$LDFLAGS_id3tag,;t t
  34045. s,@id3tag_plugin_TRUE@,$id3tag_plugin_TRUE,;t t
  34046. s,@id3tag_plugin_FALSE@,$id3tag_plugin_FALSE,;t t
  34047. s,@id3tag_builtin_TRUE@,$id3tag_builtin_TRUE,;t t
  34048. s,@id3tag_builtin_FALSE@,$id3tag_builtin_FALSE,;t t
  34049. s,@demuxsub_plugin_TRUE@,$demuxsub_plugin_TRUE,;t t
  34050. s,@demuxsub_plugin_FALSE@,$demuxsub_plugin_FALSE,;t t
  34051. s,@demuxsub_builtin_TRUE@,$demuxsub_builtin_TRUE,;t t
  34052. s,@demuxsub_builtin_FALSE@,$demuxsub_builtin_FALSE,;t t
  34053. s,@wav_plugin_TRUE@,$wav_plugin_TRUE,;t t
  34054. s,@wav_plugin_FALSE@,$wav_plugin_FALSE,;t t
  34055. s,@wav_builtin_TRUE@,$wav_builtin_TRUE,;t t
  34056. s,@wav_builtin_FALSE@,$wav_builtin_FALSE,;t t
  34057. s,@encoder_xvid_plugin_TRUE@,$encoder_xvid_plugin_TRUE,;t t
  34058. s,@encoder_xvid_plugin_FALSE@,$encoder_xvid_plugin_FALSE,;t t
  34059. s,@encoder_xvid_builtin_TRUE@,$encoder_xvid_builtin_TRUE,;t t
  34060. s,@encoder_xvid_builtin_FALSE@,$encoder_xvid_builtin_FALSE,;t t
  34061. s,@encoder_ffmpeg_plugin_TRUE@,$encoder_ffmpeg_plugin_TRUE,;t t
  34062. s,@encoder_ffmpeg_plugin_FALSE@,$encoder_ffmpeg_plugin_FALSE,;t t
  34063. s,@encoder_ffmpeg_builtin_TRUE@,$encoder_ffmpeg_builtin_TRUE,;t t
  34064. s,@encoder_ffmpeg_builtin_FALSE@,$encoder_ffmpeg_builtin_FALSE,;t t
  34065. s,@LDFLAGS_beos@,$LDFLAGS_beos,;t t
  34066. s,@beos_plugin_TRUE@,$beos_plugin_TRUE,;t t
  34067. s,@beos_plugin_FALSE@,$beos_plugin_FALSE,;t t
  34068. s,@beos_builtin_TRUE@,$beos_builtin_TRUE,;t t
  34069. s,@beos_builtin_FALSE@,$beos_builtin_FALSE,;t t
  34070. s,@CFLAGS_familiar@,$CFLAGS_familiar,;t t
  34071. s,@LDFLAGS_familiar@,$LDFLAGS_familiar,;t t
  34072. s,@familiar_plugin_TRUE@,$familiar_plugin_TRUE,;t t
  34073. s,@familiar_plugin_FALSE@,$familiar_plugin_FALSE,;t t
  34074. s,@familiar_builtin_TRUE@,$familiar_builtin_TRUE,;t t
  34075. s,@familiar_builtin_FALSE@,$familiar_builtin_FALSE,;t t
  34076. s,@CFLAGS_gtk@,$CFLAGS_gtk,;t t
  34077. s,@LDFLAGS_gtk@,$LDFLAGS_gtk,;t t
  34078. s,@gtk_plugin_TRUE@,$gtk_plugin_TRUE,;t t
  34079. s,@gtk_plugin_FALSE@,$gtk_plugin_FALSE,;t t
  34080. s,@gtk_builtin_TRUE@,$gtk_builtin_TRUE,;t t
  34081. s,@gtk_builtin_FALSE@,$gtk_builtin_FALSE,;t t
  34082. s,@CFLAGS_gnome@,$CFLAGS_gnome,;t t
  34083. s,@LDFLAGS_gnome@,$LDFLAGS_gnome,;t t
  34084. s,@gnome_plugin_TRUE@,$gnome_plugin_TRUE,;t t
  34085. s,@gnome_plugin_FALSE@,$gnome_plugin_FALSE,;t t
  34086. s,@gnome_builtin_TRUE@,$gnome_builtin_TRUE,;t t
  34087. s,@gnome_builtin_FALSE@,$gnome_builtin_FALSE,;t t
  34088. s,@CFLAGS_gtk2@,$CFLAGS_gtk2,;t t
  34089. s,@LDFLAGS_gtk2@,$LDFLAGS_gtk2,;t t
  34090. s,@gtk2_plugin_TRUE@,$gtk2_plugin_TRUE,;t t
  34091. s,@gtk2_plugin_FALSE@,$gtk2_plugin_FALSE,;t t
  34092. s,@gtk2_builtin_TRUE@,$gtk2_builtin_TRUE,;t t
  34093. s,@gtk2_builtin_FALSE@,$gtk2_builtin_FALSE,;t t
  34094. s,@CFLAGS_gnome2@,$CFLAGS_gnome2,;t t
  34095. s,@LDFLAGS_gnome2@,$LDFLAGS_gnome2,;t t
  34096. s,@gnome2_plugin_TRUE@,$gnome2_plugin_TRUE,;t t
  34097. s,@gnome2_plugin_FALSE@,$gnome2_plugin_FALSE,;t t
  34098. s,@gnome2_builtin_TRUE@,$gnome2_builtin_TRUE,;t t
  34099. s,@gnome2_builtin_FALSE@,$gnome2_builtin_FALSE,;t t
  34100. s,@CPPFLAGS_kde@,$CPPFLAGS_kde,;t t
  34101. s,@LDFLAGS_kde@,$LDFLAGS_kde,;t t
  34102. s,@kde_plugin_TRUE@,$kde_plugin_TRUE,;t t
  34103. s,@kde_plugin_FALSE@,$kde_plugin_FALSE,;t t
  34104. s,@kde_builtin_TRUE@,$kde_builtin_TRUE,;t t
  34105. s,@kde_builtin_FALSE@,$kde_builtin_FALSE,;t t
  34106. s,@LDFLAGS_macosx@,$LDFLAGS_macosx,;t t
  34107. s,@macosx_plugin_TRUE@,$macosx_plugin_TRUE,;t t
  34108. s,@macosx_plugin_FALSE@,$macosx_plugin_FALSE,;t t
  34109. s,@macosx_builtin_TRUE@,$macosx_builtin_TRUE,;t t
  34110. s,@macosx_builtin_FALSE@,$macosx_builtin_FALSE,;t t
  34111. s,@LDFLAGS_ncurses@,$LDFLAGS_ncurses,;t t
  34112. s,@ncurses_plugin_TRUE@,$ncurses_plugin_TRUE,;t t
  34113. s,@ncurses_plugin_FALSE@,$ncurses_plugin_FALSE,;t t
  34114. s,@ncurses_builtin_TRUE@,$ncurses_builtin_TRUE,;t t
  34115. s,@ncurses_builtin_FALSE@,$ncurses_builtin_FALSE,;t t
  34116. s,@LDFLAGS_qnx@,$LDFLAGS_qnx,;t t
  34117. s,@qnx_plugin_TRUE@,$qnx_plugin_TRUE,;t t
  34118. s,@qnx_plugin_FALSE@,$qnx_plugin_FALSE,;t t
  34119. s,@qnx_builtin_TRUE@,$qnx_builtin_TRUE,;t t
  34120. s,@qnx_builtin_FALSE@,$qnx_builtin_FALSE,;t t
  34121. s,@CPPFLAGS_qt@,$CPPFLAGS_qt,;t t
  34122. s,@LDFLAGS_qt@,$LDFLAGS_qt,;t t
  34123. s,@qt_plugin_TRUE@,$qt_plugin_TRUE,;t t
  34124. s,@qt_plugin_FALSE@,$qt_plugin_FALSE,;t t
  34125. s,@qt_builtin_TRUE@,$qt_builtin_TRUE,;t t
  34126. s,@qt_builtin_FALSE@,$qt_builtin_FALSE,;t t
  34127. s,@CPPFLAGS_skins@,$CPPFLAGS_skins,;t t
  34128. s,@LDFLAGS_skins@,$LDFLAGS_skins,;t t
  34129. s,@skins_plugin_TRUE@,$skins_plugin_TRUE,;t t
  34130. s,@skins_plugin_FALSE@,$skins_plugin_FALSE,;t t
  34131. s,@skins_builtin_TRUE@,$skins_builtin_TRUE,;t t
  34132. s,@skins_builtin_FALSE@,$skins_builtin_FALSE,;t t
  34133. s,@win32_plugin_TRUE@,$win32_plugin_TRUE,;t t
  34134. s,@win32_plugin_FALSE@,$win32_plugin_FALSE,;t t
  34135. s,@win32_builtin_TRUE@,$win32_builtin_TRUE,;t t
  34136. s,@win32_builtin_FALSE@,$win32_builtin_FALSE,;t t
  34137. s,@CXXFLAGS_wxwindows@,$CXXFLAGS_wxwindows,;t t
  34138. s,@LDFLAGS_wxwindows@,$LDFLAGS_wxwindows,;t t
  34139. s,@wxwindows_plugin_TRUE@,$wxwindows_plugin_TRUE,;t t
  34140. s,@wxwindows_plugin_FALSE@,$wxwindows_plugin_FALSE,;t t
  34141. s,@wxwindows_builtin_TRUE@,$wxwindows_builtin_TRUE,;t t
  34142. s,@wxwindows_builtin_FALSE@,$wxwindows_builtin_FALSE,;t t
  34143. s,@CFLAGS_gtk_main@,$CFLAGS_gtk_main,;t t
  34144. s,@LDFLAGS_gtk_main@,$LDFLAGS_gtk_main,;t t
  34145. s,@gtk_main_plugin_TRUE@,$gtk_main_plugin_TRUE,;t t
  34146. s,@gtk_main_plugin_FALSE@,$gtk_main_plugin_FALSE,;t t
  34147. s,@gtk_main_builtin_TRUE@,$gtk_main_builtin_TRUE,;t t
  34148. s,@gtk_main_builtin_FALSE@,$gtk_main_builtin_FALSE,;t t
  34149. s,@CFLAGS_gnome_main@,$CFLAGS_gnome_main,;t t
  34150. s,@LDFLAGS_gnome_main@,$LDFLAGS_gnome_main,;t t
  34151. s,@gnome_main_plugin_TRUE@,$gnome_main_plugin_TRUE,;t t
  34152. s,@gnome_main_plugin_FALSE@,$gnome_main_plugin_FALSE,;t t
  34153. s,@gnome_main_builtin_TRUE@,$gnome_main_builtin_TRUE,;t t
  34154. s,@gnome_main_builtin_FALSE@,$gnome_main_builtin_FALSE,;t t
  34155. s,@CFLAGS_gtk2_main@,$CFLAGS_gtk2_main,;t t
  34156. s,@LDFLAGS_gtk2_main@,$LDFLAGS_gtk2_main,;t t
  34157. s,@gtk2_main_plugin_TRUE@,$gtk2_main_plugin_TRUE,;t t
  34158. s,@gtk2_main_plugin_FALSE@,$gtk2_main_plugin_FALSE,;t t
  34159. s,@gtk2_main_builtin_TRUE@,$gtk2_main_builtin_TRUE,;t t
  34160. s,@gtk2_main_builtin_FALSE@,$gtk2_main_builtin_FALSE,;t t
  34161. s,@CFLAGS_gnome2_main@,$CFLAGS_gnome2_main,;t t
  34162. s,@LDFLAGS_gnome2_main@,$LDFLAGS_gnome2_main,;t t
  34163. s,@gnome2_main_plugin_TRUE@,$gnome2_main_plugin_TRUE,;t t
  34164. s,@gnome2_main_plugin_FALSE@,$gnome2_main_plugin_FALSE,;t t
  34165. s,@gnome2_main_builtin_TRUE@,$gnome2_main_builtin_TRUE,;t t
  34166. s,@gnome2_main_builtin_FALSE@,$gnome2_main_builtin_FALSE,;t t
  34167. s,@LDFLAGS_sap@,$LDFLAGS_sap,;t t
  34168. s,@sap_plugin_TRUE@,$sap_plugin_TRUE,;t t
  34169. s,@sap_plugin_FALSE@,$sap_plugin_FALSE,;t t
  34170. s,@sap_builtin_TRUE@,$sap_builtin_TRUE,;t t
  34171. s,@sap_builtin_FALSE@,$sap_builtin_FALSE,;t t
  34172. s,@screensaver_plugin_TRUE@,$screensaver_plugin_TRUE,;t t
  34173. s,@screensaver_plugin_FALSE@,$screensaver_plugin_FALSE,;t t
  34174. s,@screensaver_builtin_TRUE@,$screensaver_builtin_TRUE,;t t
  34175. s,@screensaver_builtin_FALSE@,$screensaver_builtin_FALSE,;t t
  34176. s,@CPPFLAGS_qte_main@,$CPPFLAGS_qte_main,;t t
  34177. s,@LDFLAGS_qte_main@,$LDFLAGS_qte_main,;t t
  34178. s,@qte_main_plugin_TRUE@,$qte_main_plugin_TRUE,;t t
  34179. s,@qte_main_plugin_FALSE@,$qte_main_plugin_FALSE,;t t
  34180. s,@qte_main_builtin_TRUE@,$qte_main_builtin_TRUE,;t t
  34181. s,@qte_main_builtin_FALSE@,$qte_main_builtin_FALSE,;t t
  34182. s,@LDFLAGS_httpd@,$LDFLAGS_httpd,;t t
  34183. s,@httpd_plugin_TRUE@,$httpd_plugin_TRUE,;t t
  34184. s,@httpd_plugin_FALSE@,$httpd_plugin_FALSE,;t t
  34185. s,@httpd_builtin_TRUE@,$httpd_builtin_TRUE,;t t
  34186. s,@httpd_builtin_FALSE@,$httpd_builtin_FALSE,;t t
  34187. s,@dummy_plugin_TRUE@,$dummy_plugin_TRUE,;t t
  34188. s,@dummy_plugin_FALSE@,$dummy_plugin_FALSE,;t t
  34189. s,@dummy_builtin_TRUE@,$dummy_builtin_TRUE,;t t
  34190. s,@dummy_builtin_FALSE@,$dummy_builtin_FALSE,;t t
  34191. s,@logger_plugin_TRUE@,$logger_plugin_TRUE,;t t
  34192. s,@logger_plugin_FALSE@,$logger_plugin_FALSE,;t t
  34193. s,@logger_builtin_TRUE@,$logger_builtin_TRUE,;t t
  34194. s,@logger_builtin_FALSE@,$logger_builtin_FALSE,;t t
  34195. s,@memcpy_plugin_TRUE@,$memcpy_plugin_TRUE,;t t
  34196. s,@memcpy_plugin_FALSE@,$memcpy_plugin_FALSE,;t t
  34197. s,@memcpy_builtin_TRUE@,$memcpy_builtin_TRUE,;t t
  34198. s,@memcpy_builtin_FALSE@,$memcpy_builtin_FALSE,;t t
  34199. s,@memcpymmx_plugin_TRUE@,$memcpymmx_plugin_TRUE,;t t
  34200. s,@memcpymmx_plugin_FALSE@,$memcpymmx_plugin_FALSE,;t t
  34201. s,@memcpymmx_builtin_TRUE@,$memcpymmx_builtin_TRUE,;t t
  34202. s,@memcpymmx_builtin_FALSE@,$memcpymmx_builtin_FALSE,;t t
  34203. s,@memcpymmxext_plugin_TRUE@,$memcpymmxext_plugin_TRUE,;t t
  34204. s,@memcpymmxext_plugin_FALSE@,$memcpymmxext_plugin_FALSE,;t t
  34205. s,@memcpymmxext_builtin_TRUE@,$memcpymmxext_builtin_TRUE,;t t
  34206. s,@memcpymmxext_builtin_FALSE@,$memcpymmxext_builtin_FALSE,;t t
  34207. s,@memcpy3dn_plugin_TRUE@,$memcpy3dn_plugin_TRUE,;t t
  34208. s,@memcpy3dn_plugin_FALSE@,$memcpy3dn_plugin_FALSE,;t t
  34209. s,@memcpy3dn_builtin_TRUE@,$memcpy3dn_builtin_TRUE,;t t
  34210. s,@memcpy3dn_builtin_FALSE@,$memcpy3dn_builtin_FALSE,;t t
  34211. s,@CFLAGS_memcpyaltivec@,$CFLAGS_memcpyaltivec,;t t
  34212. s,@LDFLAGS_memcpyaltivec@,$LDFLAGS_memcpyaltivec,;t t
  34213. s,@memcpyaltivec_plugin_TRUE@,$memcpyaltivec_plugin_TRUE,;t t
  34214. s,@memcpyaltivec_plugin_FALSE@,$memcpyaltivec_plugin_FALSE,;t t
  34215. s,@memcpyaltivec_builtin_TRUE@,$memcpyaltivec_builtin_TRUE,;t t
  34216. s,@memcpyaltivec_builtin_FALSE@,$memcpyaltivec_builtin_FALSE,;t t
  34217. s,@LDFLAGS_ipv4@,$LDFLAGS_ipv4,;t t
  34218. s,@ipv4_plugin_TRUE@,$ipv4_plugin_TRUE,;t t
  34219. s,@ipv4_plugin_FALSE@,$ipv4_plugin_FALSE,;t t
  34220. s,@ipv4_builtin_TRUE@,$ipv4_builtin_TRUE,;t t
  34221. s,@ipv4_builtin_FALSE@,$ipv4_builtin_FALSE,;t t
  34222. s,@LDFLAGS_ipv6@,$LDFLAGS_ipv6,;t t
  34223. s,@ipv6_plugin_TRUE@,$ipv6_plugin_TRUE,;t t
  34224. s,@ipv6_plugin_FALSE@,$ipv6_plugin_FALSE,;t t
  34225. s,@ipv6_builtin_TRUE@,$ipv6_builtin_TRUE,;t t
  34226. s,@ipv6_builtin_FALSE@,$ipv6_builtin_FALSE,;t t
  34227. s,@test1_plugin_TRUE@,$test1_plugin_TRUE,;t t
  34228. s,@test1_plugin_FALSE@,$test1_plugin_FALSE,;t t
  34229. s,@test1_builtin_TRUE@,$test1_builtin_TRUE,;t t
  34230. s,@test1_builtin_FALSE@,$test1_builtin_FALSE,;t t
  34231. s,@CXXFLAGS_test2@,$CXXFLAGS_test2,;t t
  34232. s,@test2_plugin_TRUE@,$test2_plugin_TRUE,;t t
  34233. s,@test2_plugin_FALSE@,$test2_plugin_FALSE,;t t
  34234. s,@test2_builtin_TRUE@,$test2_builtin_TRUE,;t t
  34235. s,@test2_builtin_FALSE@,$test2_builtin_FALSE,;t t
  34236. s,@OBJCFLAGS_test3@,$OBJCFLAGS_test3,;t t
  34237. s,@LDFLAGS_test3@,$LDFLAGS_test3,;t t
  34238. s,@test3_plugin_TRUE@,$test3_plugin_TRUE,;t t
  34239. s,@test3_plugin_FALSE@,$test3_plugin_FALSE,;t t
  34240. s,@test3_builtin_TRUE@,$test3_builtin_TRUE,;t t
  34241. s,@test3_builtin_FALSE@,$test3_builtin_FALSE,;t t
  34242. s,@test4_plugin_TRUE@,$test4_plugin_TRUE,;t t
  34243. s,@test4_plugin_FALSE@,$test4_plugin_FALSE,;t t
  34244. s,@test4_builtin_TRUE@,$test4_builtin_TRUE,;t t
  34245. s,@test4_builtin_FALSE@,$test4_builtin_FALSE,;t t
  34246. s,@mux_dummy_plugin_TRUE@,$mux_dummy_plugin_TRUE,;t t
  34247. s,@mux_dummy_plugin_FALSE@,$mux_dummy_plugin_FALSE,;t t
  34248. s,@mux_dummy_builtin_TRUE@,$mux_dummy_builtin_TRUE,;t t
  34249. s,@mux_dummy_builtin_FALSE@,$mux_dummy_builtin_FALSE,;t t
  34250. s,@mux_avi_plugin_TRUE@,$mux_avi_plugin_TRUE,;t t
  34251. s,@mux_avi_plugin_FALSE@,$mux_avi_plugin_FALSE,;t t
  34252. s,@mux_avi_builtin_TRUE@,$mux_avi_builtin_TRUE,;t t
  34253. s,@mux_avi_builtin_FALSE@,$mux_avi_builtin_FALSE,;t t
  34254. s,@LDFLAGS_mux_ogg@,$LDFLAGS_mux_ogg,;t t
  34255. s,@mux_ogg_plugin_TRUE@,$mux_ogg_plugin_TRUE,;t t
  34256. s,@mux_ogg_plugin_FALSE@,$mux_ogg_plugin_FALSE,;t t
  34257. s,@mux_ogg_builtin_TRUE@,$mux_ogg_builtin_TRUE,;t t
  34258. s,@mux_ogg_builtin_FALSE@,$mux_ogg_builtin_FALSE,;t t
  34259. s,@mux_ps_plugin_TRUE@,$mux_ps_plugin_TRUE,;t t
  34260. s,@mux_ps_plugin_FALSE@,$mux_ps_plugin_FALSE,;t t
  34261. s,@mux_ps_builtin_TRUE@,$mux_ps_builtin_TRUE,;t t
  34262. s,@mux_ps_builtin_FALSE@,$mux_ps_builtin_FALSE,;t t
  34263. s,@mux_ts_plugin_TRUE@,$mux_ts_plugin_TRUE,;t t
  34264. s,@mux_ts_plugin_FALSE@,$mux_ts_plugin_FALSE,;t t
  34265. s,@mux_ts_builtin_TRUE@,$mux_ts_builtin_TRUE,;t t
  34266. s,@mux_ts_builtin_FALSE@,$mux_ts_builtin_FALSE,;t t
  34267. s,@CPPFLAGS_mux_ts_dvbpsi@,$CPPFLAGS_mux_ts_dvbpsi,;t t
  34268. s,@LDFLAGS_mux_ts_dvbpsi@,$LDFLAGS_mux_ts_dvbpsi,;t t
  34269. s,@mux_ts_dvbpsi_plugin_TRUE@,$mux_ts_dvbpsi_plugin_TRUE,;t t
  34270. s,@mux_ts_dvbpsi_plugin_FALSE@,$mux_ts_dvbpsi_plugin_FALSE,;t t
  34271. s,@mux_ts_dvbpsi_builtin_TRUE@,$mux_ts_dvbpsi_builtin_TRUE,;t t
  34272. s,@mux_ts_dvbpsi_builtin_FALSE@,$mux_ts_dvbpsi_builtin_FALSE,;t t
  34273. s,@packetizer_copy_plugin_TRUE@,$packetizer_copy_plugin_TRUE,;t t
  34274. s,@packetizer_copy_plugin_FALSE@,$packetizer_copy_plugin_FALSE,;t t
  34275. s,@packetizer_copy_builtin_TRUE@,$packetizer_copy_builtin_TRUE,;t t
  34276. s,@packetizer_copy_builtin_FALSE@,$packetizer_copy_builtin_FALSE,;t t
  34277. s,@packetizer_a52_plugin_TRUE@,$packetizer_a52_plugin_TRUE,;t t
  34278. s,@packetizer_a52_plugin_FALSE@,$packetizer_a52_plugin_FALSE,;t t
  34279. s,@packetizer_a52_builtin_TRUE@,$packetizer_a52_builtin_TRUE,;t t
  34280. s,@packetizer_a52_builtin_FALSE@,$packetizer_a52_builtin_FALSE,;t t
  34281. s,@packetizer_mpegaudio_plugin_TRUE@,$packetizer_mpegaudio_plugin_TRUE,;t t
  34282. s,@packetizer_mpegaudio_plugin_FALSE@,$packetizer_mpegaudio_plugin_FALSE,;t t
  34283. s,@packetizer_mpegaudio_builtin_TRUE@,$packetizer_mpegaudio_builtin_TRUE,;t t
  34284. s,@packetizer_mpegaudio_builtin_FALSE@,$packetizer_mpegaudio_builtin_FALSE,;t t
  34285. s,@packetizer_mpegvideo_plugin_TRUE@,$packetizer_mpegvideo_plugin_TRUE,;t t
  34286. s,@packetizer_mpegvideo_plugin_FALSE@,$packetizer_mpegvideo_plugin_FALSE,;t t
  34287. s,@packetizer_mpegvideo_builtin_TRUE@,$packetizer_mpegvideo_builtin_TRUE,;t t
  34288. s,@packetizer_mpegvideo_builtin_FALSE@,$packetizer_mpegvideo_builtin_FALSE,;t t
  34289. s,@packetizer_mpeg4video_plugin_TRUE@,$packetizer_mpeg4video_plugin_TRUE,;t t
  34290. s,@packetizer_mpeg4video_plugin_FALSE@,$packetizer_mpeg4video_plugin_FALSE,;t t
  34291. s,@packetizer_mpeg4video_builtin_TRUE@,$packetizer_mpeg4video_builtin_TRUE,;t t
  34292. s,@packetizer_mpeg4video_builtin_FALSE@,$packetizer_mpeg4video_builtin_FALSE,;t t
  34293. s,@packetizer_mpeg4audio_plugin_TRUE@,$packetizer_mpeg4audio_plugin_TRUE,;t t
  34294. s,@packetizer_mpeg4audio_plugin_FALSE@,$packetizer_mpeg4audio_plugin_FALSE,;t t
  34295. s,@packetizer_mpeg4audio_builtin_TRUE@,$packetizer_mpeg4audio_builtin_TRUE,;t t
  34296. s,@packetizer_mpeg4audio_builtin_FALSE@,$packetizer_mpeg4audio_builtin_FALSE,;t t
  34297. s,@LDFLAGS_i420_rgb@,$LDFLAGS_i420_rgb,;t t
  34298. s,@i420_rgb_plugin_TRUE@,$i420_rgb_plugin_TRUE,;t t
  34299. s,@i420_rgb_plugin_FALSE@,$i420_rgb_plugin_FALSE,;t t
  34300. s,@i420_rgb_builtin_TRUE@,$i420_rgb_builtin_TRUE,;t t
  34301. s,@i420_rgb_builtin_FALSE@,$i420_rgb_builtin_FALSE,;t t
  34302. s,@i420_rgb_mmx_plugin_TRUE@,$i420_rgb_mmx_plugin_TRUE,;t t
  34303. s,@i420_rgb_mmx_plugin_FALSE@,$i420_rgb_mmx_plugin_FALSE,;t t
  34304. s,@i420_rgb_mmx_builtin_TRUE@,$i420_rgb_mmx_builtin_TRUE,;t t
  34305. s,@i420_rgb_mmx_builtin_FALSE@,$i420_rgb_mmx_builtin_FALSE,;t t
  34306. s,@i420_yuy2_plugin_TRUE@,$i420_yuy2_plugin_TRUE,;t t
  34307. s,@i420_yuy2_plugin_FALSE@,$i420_yuy2_plugin_FALSE,;t t
  34308. s,@i420_yuy2_builtin_TRUE@,$i420_yuy2_builtin_TRUE,;t t
  34309. s,@i420_yuy2_builtin_FALSE@,$i420_yuy2_builtin_FALSE,;t t
  34310. s,@CFLAGS_i420_yuy2_mmx@,$CFLAGS_i420_yuy2_mmx,;t t
  34311. s,@i420_yuy2_mmx_plugin_TRUE@,$i420_yuy2_mmx_plugin_TRUE,;t t
  34312. s,@i420_yuy2_mmx_plugin_FALSE@,$i420_yuy2_mmx_plugin_FALSE,;t t
  34313. s,@i420_yuy2_mmx_builtin_TRUE@,$i420_yuy2_mmx_builtin_TRUE,;t t
  34314. s,@i420_yuy2_mmx_builtin_FALSE@,$i420_yuy2_mmx_builtin_FALSE,;t t
  34315. s,@i422_yuy2_plugin_TRUE@,$i422_yuy2_plugin_TRUE,;t t
  34316. s,@i422_yuy2_plugin_FALSE@,$i422_yuy2_plugin_FALSE,;t t
  34317. s,@i422_yuy2_builtin_TRUE@,$i422_yuy2_builtin_TRUE,;t t
  34318. s,@i422_yuy2_builtin_FALSE@,$i422_yuy2_builtin_FALSE,;t t
  34319. s,@i422_yuy2_mmx_plugin_TRUE@,$i422_yuy2_mmx_plugin_TRUE,;t t
  34320. s,@i422_yuy2_mmx_plugin_FALSE@,$i422_yuy2_mmx_plugin_FALSE,;t t
  34321. s,@i422_yuy2_mmx_builtin_TRUE@,$i422_yuy2_mmx_builtin_TRUE,;t t
  34322. s,@i422_yuy2_mmx_builtin_FALSE@,$i422_yuy2_mmx_builtin_FALSE,;t t
  34323. s,@i420_ymga_plugin_TRUE@,$i420_ymga_plugin_TRUE,;t t
  34324. s,@i420_ymga_plugin_FALSE@,$i420_ymga_plugin_FALSE,;t t
  34325. s,@i420_ymga_builtin_TRUE@,$i420_ymga_builtin_TRUE,;t t
  34326. s,@i420_ymga_builtin_FALSE@,$i420_ymga_builtin_FALSE,;t t
  34327. s,@i420_ymga_mmx_plugin_TRUE@,$i420_ymga_mmx_plugin_TRUE,;t t
  34328. s,@i420_ymga_mmx_plugin_FALSE@,$i420_ymga_mmx_plugin_FALSE,;t t
  34329. s,@i420_ymga_mmx_builtin_TRUE@,$i420_ymga_mmx_builtin_TRUE,;t t
  34330. s,@i420_ymga_mmx_builtin_FALSE@,$i420_ymga_mmx_builtin_FALSE,;t t
  34331. s,@transform_plugin_TRUE@,$transform_plugin_TRUE,;t t
  34332. s,@transform_plugin_FALSE@,$transform_plugin_FALSE,;t t
  34333. s,@transform_builtin_TRUE@,$transform_builtin_TRUE,;t t
  34334. s,@transform_builtin_FALSE@,$transform_builtin_FALSE,;t t
  34335. s,@invert_plugin_TRUE@,$invert_plugin_TRUE,;t t
  34336. s,@invert_plugin_FALSE@,$invert_plugin_FALSE,;t t
  34337. s,@invert_builtin_TRUE@,$invert_builtin_TRUE,;t t
  34338. s,@invert_builtin_FALSE@,$invert_builtin_FALSE,;t t
  34339. s,@LDFLAGS_adjust@,$LDFLAGS_adjust,;t t
  34340. s,@adjust_plugin_TRUE@,$adjust_plugin_TRUE,;t t
  34341. s,@adjust_plugin_FALSE@,$adjust_plugin_FALSE,;t t
  34342. s,@adjust_builtin_TRUE@,$adjust_builtin_TRUE,;t t
  34343. s,@adjust_builtin_FALSE@,$adjust_builtin_FALSE,;t t
  34344. s,@LDFLAGS_distort@,$LDFLAGS_distort,;t t
  34345. s,@distort_plugin_TRUE@,$distort_plugin_TRUE,;t t
  34346. s,@distort_plugin_FALSE@,$distort_plugin_FALSE,;t t
  34347. s,@distort_builtin_TRUE@,$distort_builtin_TRUE,;t t
  34348. s,@distort_builtin_FALSE@,$distort_builtin_FALSE,;t t
  34349. s,@wall_plugin_TRUE@,$wall_plugin_TRUE,;t t
  34350. s,@wall_plugin_FALSE@,$wall_plugin_FALSE,;t t
  34351. s,@wall_builtin_TRUE@,$wall_builtin_TRUE,;t t
  34352. s,@wall_builtin_FALSE@,$wall_builtin_FALSE,;t t
  34353. s,@clone_plugin_TRUE@,$clone_plugin_TRUE,;t t
  34354. s,@clone_plugin_FALSE@,$clone_plugin_FALSE,;t t
  34355. s,@clone_builtin_TRUE@,$clone_builtin_TRUE,;t t
  34356. s,@clone_builtin_FALSE@,$clone_builtin_FALSE,;t t
  34357. s,@crop_plugin_TRUE@,$crop_plugin_TRUE,;t t
  34358. s,@crop_plugin_FALSE@,$crop_plugin_FALSE,;t t
  34359. s,@crop_builtin_TRUE@,$crop_builtin_TRUE,;t t
  34360. s,@crop_builtin_FALSE@,$crop_builtin_FALSE,;t t
  34361. s,@motionblur_plugin_TRUE@,$motionblur_plugin_TRUE,;t t
  34362. s,@motionblur_plugin_FALSE@,$motionblur_plugin_FALSE,;t t
  34363. s,@motionblur_builtin_TRUE@,$motionblur_builtin_TRUE,;t t
  34364. s,@motionblur_builtin_FALSE@,$motionblur_builtin_FALSE,;t t
  34365. s,@CFLAGS_osdtext@,$CFLAGS_osdtext,;t t
  34366. s,@LDFLAGS_osdtext@,$LDFLAGS_osdtext,;t t
  34367. s,@osdtext_plugin_TRUE@,$osdtext_plugin_TRUE,;t t
  34368. s,@osdtext_plugin_FALSE@,$osdtext_plugin_FALSE,;t t
  34369. s,@osdtext_builtin_TRUE@,$osdtext_builtin_TRUE,;t t
  34370. s,@osdtext_builtin_FALSE@,$osdtext_builtin_FALSE,;t t
  34371. s,@deinterlace_plugin_TRUE@,$deinterlace_plugin_TRUE,;t t
  34372. s,@deinterlace_plugin_FALSE@,$deinterlace_plugin_FALSE,;t t
  34373. s,@deinterlace_builtin_TRUE@,$deinterlace_builtin_TRUE,;t t
  34374. s,@deinterlace_builtin_FALSE@,$deinterlace_builtin_FALSE,;t t
  34375. s,@LDFLAGS_aa@,$LDFLAGS_aa,;t t
  34376. s,@aa_plugin_TRUE@,$aa_plugin_TRUE,;t t
  34377. s,@aa_plugin_FALSE@,$aa_plugin_FALSE,;t t
  34378. s,@aa_builtin_TRUE@,$aa_builtin_TRUE,;t t
  34379. s,@aa_builtin_FALSE@,$aa_builtin_FALSE,;t t
  34380. s,@fb_plugin_TRUE@,$fb_plugin_TRUE,;t t
  34381. s,@fb_plugin_FALSE@,$fb_plugin_FALSE,;t t
  34382. s,@fb_builtin_TRUE@,$fb_builtin_TRUE,;t t
  34383. s,@fb_builtin_FALSE@,$fb_builtin_FALSE,;t t
  34384. s,@CPPFLAGS_ggi@,$CPPFLAGS_ggi,;t t
  34385. s,@LDFLAGS_ggi@,$LDFLAGS_ggi,;t t
  34386. s,@ggi_plugin_TRUE@,$ggi_plugin_TRUE,;t t
  34387. s,@ggi_plugin_FALSE@,$ggi_plugin_FALSE,;t t
  34388. s,@ggi_builtin_TRUE@,$ggi_builtin_TRUE,;t t
  34389. s,@ggi_builtin_FALSE@,$ggi_builtin_FALSE,;t t
  34390. s,@CPPFLAGS_glide@,$CPPFLAGS_glide,;t t
  34391. s,@LDFLAGS_glide@,$LDFLAGS_glide,;t t
  34392. s,@glide_plugin_TRUE@,$glide_plugin_TRUE,;t t
  34393. s,@glide_plugin_FALSE@,$glide_plugin_FALSE,;t t
  34394. s,@glide_builtin_TRUE@,$glide_builtin_TRUE,;t t
  34395. s,@glide_builtin_FALSE@,$glide_builtin_FALSE,;t t
  34396. s,@CFLAGS_vout_sdl@,$CFLAGS_vout_sdl,;t t
  34397. s,@LDFLAGS_vout_sdl@,$LDFLAGS_vout_sdl,;t t
  34398. s,@vout_sdl_plugin_TRUE@,$vout_sdl_plugin_TRUE,;t t
  34399. s,@vout_sdl_plugin_FALSE@,$vout_sdl_plugin_FALSE,;t t
  34400. s,@vout_sdl_builtin_TRUE@,$vout_sdl_builtin_TRUE,;t t
  34401. s,@vout_sdl_builtin_FALSE@,$vout_sdl_builtin_FALSE,;t t
  34402. s,@LDFLAGS_svgalib@,$LDFLAGS_svgalib,;t t
  34403. s,@svgalib_plugin_TRUE@,$svgalib_plugin_TRUE,;t t
  34404. s,@svgalib_plugin_FALSE@,$svgalib_plugin_FALSE,;t t
  34405. s,@svgalib_builtin_TRUE@,$svgalib_builtin_TRUE,;t t
  34406. s,@svgalib_builtin_FALSE@,$svgalib_builtin_FALSE,;t t
  34407. s,@LDFLAGS_wingdi@,$LDFLAGS_wingdi,;t t
  34408. s,@wingdi_plugin_TRUE@,$wingdi_plugin_TRUE,;t t
  34409. s,@wingdi_plugin_FALSE@,$wingdi_plugin_FALSE,;t t
  34410. s,@wingdi_builtin_TRUE@,$wingdi_builtin_TRUE,;t t
  34411. s,@wingdi_builtin_FALSE@,$wingdi_builtin_FALSE,;t t
  34412. s,@vout_encoder_plugin_TRUE@,$vout_encoder_plugin_TRUE,;t t
  34413. s,@vout_encoder_plugin_FALSE@,$vout_encoder_plugin_FALSE,;t t
  34414. s,@vout_encoder_builtin_TRUE@,$vout_encoder_builtin_TRUE,;t t
  34415. s,@vout_encoder_builtin_FALSE@,$vout_encoder_builtin_FALSE,;t t
  34416. s,@CPPFLAGS_vout_directx@,$CPPFLAGS_vout_directx,;t t
  34417. s,@LDFLAGS_vout_directx@,$LDFLAGS_vout_directx,;t t
  34418. s,@vout_directx_plugin_TRUE@,$vout_directx_plugin_TRUE,;t t
  34419. s,@vout_directx_plugin_FALSE@,$vout_directx_plugin_FALSE,;t t
  34420. s,@vout_directx_builtin_TRUE@,$vout_directx_builtin_TRUE,;t t
  34421. s,@vout_directx_builtin_FALSE@,$vout_directx_builtin_FALSE,;t t
  34422. s,@mga_plugin_TRUE@,$mga_plugin_TRUE,;t t
  34423. s,@mga_plugin_FALSE@,$mga_plugin_FALSE,;t t
  34424. s,@mga_builtin_TRUE@,$mga_builtin_TRUE,;t t
  34425. s,@mga_builtin_FALSE@,$mga_builtin_FALSE,;t t
  34426. s,@xmga_plugin_TRUE@,$xmga_plugin_TRUE,;t t
  34427. s,@xmga_plugin_FALSE@,$xmga_plugin_FALSE,;t t
  34428. s,@xmga_builtin_TRUE@,$xmga_builtin_TRUE,;t t
  34429. s,@xmga_builtin_FALSE@,$xmga_builtin_FALSE,;t t
  34430. s,@CPPFLAGS_qte@,$CPPFLAGS_qte,;t t
  34431. s,@LDFLAGS_qte@,$LDFLAGS_qte,;t t
  34432. s,@qte_plugin_TRUE@,$qte_plugin_TRUE,;t t
  34433. s,@qte_plugin_FALSE@,$qte_plugin_FALSE,;t t
  34434. s,@qte_builtin_TRUE@,$qte_builtin_TRUE,;t t
  34435. s,@qte_builtin_FALSE@,$qte_builtin_FALSE,;t t
  34436. s,@CPPFLAGS_x11@,$CPPFLAGS_x11,;t t
  34437. s,@LDFLAGS_x11@,$LDFLAGS_x11,;t t
  34438. s,@x11_plugin_TRUE@,$x11_plugin_TRUE,;t t
  34439. s,@x11_plugin_FALSE@,$x11_plugin_FALSE,;t t
  34440. s,@x11_builtin_TRUE@,$x11_builtin_TRUE,;t t
  34441. s,@x11_builtin_FALSE@,$x11_builtin_FALSE,;t t
  34442. s,@CPPFLAGS_xvideo@,$CPPFLAGS_xvideo,;t t
  34443. s,@LDFLAGS_xvideo@,$LDFLAGS_xvideo,;t t
  34444. s,@xvideo_plugin_TRUE@,$xvideo_plugin_TRUE,;t t
  34445. s,@xvideo_plugin_FALSE@,$xvideo_plugin_FALSE,;t t
  34446. s,@xvideo_builtin_TRUE@,$xvideo_builtin_TRUE,;t t
  34447. s,@xvideo_builtin_FALSE@,$xvideo_builtin_FALSE,;t t
  34448. s,@scope_plugin_TRUE@,$scope_plugin_TRUE,;t t
  34449. s,@scope_plugin_FALSE@,$scope_plugin_FALSE,;t t
  34450. s,@scope_builtin_TRUE@,$scope_builtin_TRUE,;t t
  34451. s,@scope_builtin_FALSE@,$scope_builtin_FALSE,;t t
  34452. s,@LDFLAGS_xosd@,$LDFLAGS_xosd,;t t
  34453. s,@xosd_plugin_TRUE@,$xosd_plugin_TRUE,;t t
  34454. s,@xosd_plugin_FALSE@,$xosd_plugin_FALSE,;t t
  34455. s,@xosd_builtin_TRUE@,$xosd_builtin_TRUE,;t t
  34456. s,@xosd_builtin_FALSE@,$xosd_builtin_FALSE,;t t
  34457. s,@UNTRUE_TRUE@,$UNTRUE_TRUE,;t t
  34458. s,@UNTRUE_FALSE@,$UNTRUE_FALSE,;t t
  34459. s,@DATA_PATH@,$DATA_PATH,;t t
  34460. s,@PLUGIN_PATH@,$PLUGIN_PATH,;t t
  34461. s,@AUTOMAKE_SUCKS@,$AUTOMAKE_SUCKS,;t t
  34462. s,@SYS@,$SYS,;t t
  34463. s,@ARCH@,$ARCH,;t t
  34464. s,@PLUGINS@,$PLUGINS,;t t
  34465. s,@BUILTINS@,$BUILTINS,;t t
  34466. s,@ALIASES@,$ALIASES,;t t
  34467. s,@ASM@,$ASM,;t t
  34468. s,@MOC@,$MOC,;t t
  34469. s,@XPIDL@,$XPIDL,;t t
  34470. s,@LIBEXT@,$LIBEXT,;t t
  34471. s,@INCLUDES@,$INCLUDES,;t t
  34472. s,@ALL_LINGUAS@,$ALL_LINGUAS,;t t
  34473. s,@CFLAGS_TUNING@,$CFLAGS_TUNING,;t t
  34474. s,@CFLAGS_OPTIM@,$CFLAGS_OPTIM,;t t
  34475. s,@CFLAGS_OPTIM_NODEBUG@,$CFLAGS_OPTIM_NODEBUG,;t t
  34476. s,@CFLAGS_NOOPTIM@,$CFLAGS_NOOPTIM,;t t
  34477. s,@CFLAGS_vlc@,$CFLAGS_vlc,;t t
  34478. s,@CFLAGS_pics@,$CFLAGS_pics,;t t
  34479. s,@CXXFLAGS_pics@,$CXXFLAGS_pics,;t t
  34480. s,@CFLAGS_plugins@,$CFLAGS_plugins,;t t
  34481. s,@CXXFLAGS_plugins@,$CXXFLAGS_plugins,;t t
  34482. s,@CFLAGS_builtins@,$CFLAGS_builtins,;t t
  34483. s,@CPPFLAGS_mozilla@,$CPPFLAGS_mozilla,;t t
  34484. s,@LDFLAGS_vlc@,$LDFLAGS_vlc,;t t
  34485. s,@LDFLAGS_libvlc@,$LDFLAGS_libvlc,;t t
  34486. s,@LDFLAGS_plugins@,$LDFLAGS_plugins,;t t
  34487. s,@LDFLAGS_builtins@,$LDFLAGS_builtins,;t t
  34488. s,@LDFLAGS_mozilla@,$LDFLAGS_mozilla,;t t
  34489. s,@LIBOBJS@,$LIBOBJS,;t t
  34490. s,@LTLIBOBJS@,$LTLIBOBJS,;t t
  34491. CEOF
  34492.  
  34493. _ACEOF
  34494.  
  34495.   cat >>$CONFIG_STATUS <<\_ACEOF
  34496.   # Split the substitutions into bite-sized pieces for seds with
  34497.   # small command number limits, like on Digital OSF/1 and HP-UX.
  34498.   ac_max_sed_lines=48
  34499.   ac_sed_frag=1 # Number of current file.
  34500.   ac_beg=1 # First line for current file.
  34501.   ac_end=$ac_max_sed_lines # Line after last line for current file.
  34502.   ac_more_lines=:
  34503.   ac_sed_cmds=
  34504.   while $ac_more_lines; do
  34505.     if test $ac_beg -gt 1; then
  34506.       sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
  34507.     else
  34508.       sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
  34509.     fi
  34510.     if test ! -s $tmp/subs.frag; then
  34511.       ac_more_lines=false
  34512.     else
  34513.       # The purpose of the label and of the branching condition is to
  34514.       # speed up the sed processing (if there are no `@' at all, there
  34515.       # is no need to browse any of the substitutions).
  34516.       # These are the two extra sed commands mentioned above.
  34517.       (echo ':t
  34518.   /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
  34519.       if test -z "$ac_sed_cmds"; then
  34520.       ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
  34521.       else
  34522.       ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
  34523.       fi
  34524.       ac_sed_frag=`expr $ac_sed_frag + 1`
  34525.       ac_beg=$ac_end
  34526.       ac_end=`expr $ac_end + $ac_max_sed_lines`
  34527.     fi
  34528.   done
  34529.   if test -z "$ac_sed_cmds"; then
  34530.     ac_sed_cmds=cat
  34531.   fi
  34532. fi # test -n "$CONFIG_FILES"
  34533.  
  34534. _ACEOF
  34535. cat >>$CONFIG_STATUS <<\_ACEOF
  34536. for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
  34537.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  34538.   case $ac_file in
  34539.   - | *:- | *:-:* ) # input from stdin
  34540.         cat >$tmp/stdin
  34541.         ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  34542.         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  34543.   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  34544.         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  34545.   * )   ac_file_in=$ac_file.in ;;
  34546.   esac
  34547.  
  34548.   # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
  34549.   ac_dir=`(dirname "$ac_file") 2>/dev/null ||
  34550. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34551.          X"$ac_file" : 'X\(//\)[^/]' \| \
  34552.          X"$ac_file" : 'X\(//\)$' \| \
  34553.          X"$ac_file" : 'X\(/\)' \| \
  34554.          .     : '\(.\)' 2>/dev/null ||
  34555. echo X"$ac_file" |
  34556.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34557.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34558.         /^X\(\/\/\)$/{ s//\1/; q; }
  34559.         /^X\(\/\).*/{ s//\1/; q; }
  34560.         s/.*/./; q'`
  34561.   { if $as_mkdir_p; then
  34562.     mkdir -p "$ac_dir"
  34563.   else
  34564.     as_dir="$ac_dir"
  34565.     as_dirs=
  34566.     while test ! -d "$as_dir"; do
  34567.       as_dirs="$as_dir $as_dirs"
  34568.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  34569. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34570.          X"$as_dir" : 'X\(//\)[^/]' \| \
  34571.          X"$as_dir" : 'X\(//\)$' \| \
  34572.          X"$as_dir" : 'X\(/\)' \| \
  34573.          .     : '\(.\)' 2>/dev/null ||
  34574. echo X"$as_dir" |
  34575.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34576.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34577.         /^X\(\/\/\)$/{ s//\1/; q; }
  34578.         /^X\(\/\).*/{ s//\1/; q; }
  34579.         s/.*/./; q'`
  34580.     done
  34581.     test ! -n "$as_dirs" || mkdir $as_dirs
  34582.   fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
  34583. echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
  34584.    { (exit 1); exit 1; }; }; }
  34585.  
  34586.   ac_builddir=.
  34587.  
  34588. if test "$ac_dir" != .; then
  34589.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
  34590.   # A "../" for each directory in $ac_dir_suffix.
  34591.   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
  34592. else
  34593.   ac_dir_suffix= ac_top_builddir=
  34594. fi
  34595.  
  34596. case $srcdir in
  34597.   .)  # No --srcdir option.  We are building in place.
  34598.     ac_srcdir=.
  34599.     if test -z "$ac_top_builddir"; then
  34600.        ac_top_srcdir=.
  34601.     else
  34602.        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
  34603.     fi ;;
  34604.   [\\/]* | ?:[\\/]* )  # Absolute path.
  34605.     ac_srcdir=$srcdir$ac_dir_suffix;
  34606.     ac_top_srcdir=$srcdir ;;
  34607.   *) # Relative path.
  34608.     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
  34609.     ac_top_srcdir=$ac_top_builddir$srcdir ;;
  34610. esac
  34611. # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
  34612. # absolute.
  34613. ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
  34614. ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
  34615. ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
  34616. ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
  34617.  
  34618.  
  34619.   case $INSTALL in
  34620.   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  34621.   *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
  34622.   esac
  34623.  
  34624.   if test x"$ac_file" != x-; then
  34625.     { echo "$as_me:$LINENO: creating $ac_file" >&5
  34626. echo "$as_me: creating $ac_file" >&6;}
  34627.     rm -f "$ac_file"
  34628.   fi
  34629.   # Let's still pretend it is `configure' which instantiates (i.e., don't
  34630.   # use $as_me), people would be surprised to read:
  34631.   #    /* config.h.  Generated by config.status.  */
  34632.   if test x"$ac_file" = x-; then
  34633.     configure_input=
  34634.   else
  34635.     configure_input="$ac_file.  "
  34636.   fi
  34637.   configure_input=$configure_input"Generated from `echo $ac_file_in |
  34638.                                      sed 's,.*/,,'` by configure."
  34639.  
  34640.   # First look for the input files in the build tree, otherwise in the
  34641.   # src tree.
  34642.   ac_file_inputs=`IFS=:
  34643.     for f in $ac_file_in; do
  34644.       case $f in
  34645.       -) echo $tmp/stdin ;;
  34646.       [\\/$]*)
  34647.          # Absolute (can't be DOS-style, as IFS=:)
  34648.          test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  34649. echo "$as_me: error: cannot find input file: $f" >&2;}
  34650.    { (exit 1); exit 1; }; }
  34651.          echo $f;;
  34652.       *) # Relative
  34653.          if test -f "$f"; then
  34654.            # Build tree
  34655.            echo $f
  34656.          elif test -f "$srcdir/$f"; then
  34657.            # Source tree
  34658.            echo $srcdir/$f
  34659.          else
  34660.            # /dev/null tree
  34661.            { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  34662. echo "$as_me: error: cannot find input file: $f" >&2;}
  34663.    { (exit 1); exit 1; }; }
  34664.          fi;;
  34665.       esac
  34666.     done` || { (exit 1); exit 1; }
  34667. _ACEOF
  34668. cat >>$CONFIG_STATUS <<_ACEOF
  34669.   sed "$ac_vpsub
  34670. $extrasub
  34671. _ACEOF
  34672. cat >>$CONFIG_STATUS <<\_ACEOF
  34673. :t
  34674. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  34675. s,@configure_input@,$configure_input,;t t
  34676. s,@srcdir@,$ac_srcdir,;t t
  34677. s,@abs_srcdir@,$ac_abs_srcdir,;t t
  34678. s,@top_srcdir@,$ac_top_srcdir,;t t
  34679. s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
  34680. s,@builddir@,$ac_builddir,;t t
  34681. s,@abs_builddir@,$ac_abs_builddir,;t t
  34682. s,@top_builddir@,$ac_top_builddir,;t t
  34683. s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
  34684. s,@INSTALL@,$ac_INSTALL,;t t
  34685. " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
  34686.   rm -f $tmp/stdin
  34687.   if test x"$ac_file" != x-; then
  34688.     mv $tmp/out $ac_file
  34689.   else
  34690.     cat $tmp/out
  34691.     rm -f $tmp/out
  34692.   fi
  34693.  
  34694. done
  34695. _ACEOF
  34696. cat >>$CONFIG_STATUS <<\_ACEOF
  34697.  
  34698. #
  34699. # CONFIG_HEADER section.
  34700. #
  34701.  
  34702. # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
  34703. # NAME is the cpp macro being defined and VALUE is the value it is being given.
  34704. #
  34705. # ac_d sets the value in "#define NAME VALUE" lines.
  34706. ac_dA='s,^\([     ]*\)#\([     ]*define[     ][     ]*\)'
  34707. ac_dB='[     ].*$,\1#\2'
  34708. ac_dC=' '
  34709. ac_dD=',;t'
  34710. # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
  34711. ac_uA='s,^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  34712. ac_uB='$,\1#\2define\3'
  34713. ac_uC=' '
  34714. ac_uD=',;t'
  34715.  
  34716. for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
  34717.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  34718.   case $ac_file in
  34719.   - | *:- | *:-:* ) # input from stdin
  34720.         cat >$tmp/stdin
  34721.         ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  34722.         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  34723.   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  34724.         ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  34725.   * )   ac_file_in=$ac_file.in ;;
  34726.   esac
  34727.  
  34728.   test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
  34729. echo "$as_me: creating $ac_file" >&6;}
  34730.  
  34731.   # First look for the input files in the build tree, otherwise in the
  34732.   # src tree.
  34733.   ac_file_inputs=`IFS=:
  34734.     for f in $ac_file_in; do
  34735.       case $f in
  34736.       -) echo $tmp/stdin ;;
  34737.       [\\/$]*)
  34738.          # Absolute (can't be DOS-style, as IFS=:)
  34739.          test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  34740. echo "$as_me: error: cannot find input file: $f" >&2;}
  34741.    { (exit 1); exit 1; }; }
  34742.          echo $f;;
  34743.       *) # Relative
  34744.          if test -f "$f"; then
  34745.            # Build tree
  34746.            echo $f
  34747.          elif test -f "$srcdir/$f"; then
  34748.            # Source tree
  34749.            echo $srcdir/$f
  34750.          else
  34751.            # /dev/null tree
  34752.            { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  34753. echo "$as_me: error: cannot find input file: $f" >&2;}
  34754.    { (exit 1); exit 1; }; }
  34755.          fi;;
  34756.       esac
  34757.     done` || { (exit 1); exit 1; }
  34758.   # Remove the trailing spaces.
  34759.   sed 's/[     ]*$//' $ac_file_inputs >$tmp/in
  34760.  
  34761. _ACEOF
  34762.  
  34763. # Transform confdefs.h into two sed scripts, `conftest.defines' and
  34764. # `conftest.undefs', that substitutes the proper values into
  34765. # config.h.in to produce config.h.  The first handles `#define'
  34766. # templates, and the second `#undef' templates.
  34767. # And first: Protect against being on the right side of a sed subst in
  34768. # config.status.  Protect against being in an unquoted here document
  34769. # in config.status.
  34770. rm -f conftest.defines conftest.undefs
  34771. # Using a here document instead of a string reduces the quoting nightmare.
  34772. # Putting comments in sed scripts is not portable.
  34773. #
  34774. # `end' is used to avoid that the second main sed command (meant for
  34775. # 0-ary CPP macros) applies to n-ary macro definitions.
  34776. # See the Autoconf documentation for `clear'.
  34777. cat >confdef2sed.sed <<\_ACEOF
  34778. s/[\\&,]/\\&/g
  34779. s,[\\$`],\\&,g
  34780. t clear
  34781. : clear
  34782. s,^[     ]*#[     ]*define[     ][     ]*\([^     (][^     (]*\)\(([^)]*)\)[     ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
  34783. t end
  34784. s,^[     ]*#[     ]*define[     ][     ]*\([^     ][^     ]*\)[     ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
  34785. : end
  34786. _ACEOF
  34787. # If some macros were called several times there might be several times
  34788. # the same #defines, which is useless.  Nevertheless, we may not want to
  34789. # sort them, since we want the *last* AC-DEFINE to be honored.
  34790. uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
  34791. sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
  34792. rm -f confdef2sed.sed
  34793.  
  34794. # This sed command replaces #undef with comments.  This is necessary, for
  34795. # example, in the case of _POSIX_SOURCE, which is predefined and required
  34796. # on some systems where configure will not decide to define it.
  34797. cat >>conftest.undefs <<\_ACEOF
  34798. s,^[     ]*#[     ]*undef[     ][     ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
  34799. _ACEOF
  34800.  
  34801. # Break up conftest.defines because some shells have a limit on the size
  34802. # of here documents, and old seds have small limits too (100 cmds).
  34803. echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
  34804. echo '  if grep "^[     ]*#[     ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
  34805. echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
  34806. echo '  :' >>$CONFIG_STATUS
  34807. rm -f conftest.tail
  34808. while grep . conftest.defines >/dev/null
  34809. do
  34810.   # Write a limited-size here document to $tmp/defines.sed.
  34811.   echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
  34812.   # Speed up: don't consider the non `#define' lines.
  34813.   echo '/^[     ]*#[     ]*define/!b' >>$CONFIG_STATUS
  34814.   # Work around the forget-to-reset-the-flag bug.
  34815.   echo 't clr' >>$CONFIG_STATUS
  34816.   echo ': clr' >>$CONFIG_STATUS
  34817.   sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
  34818.   echo 'CEOF
  34819.   sed -f $tmp/defines.sed $tmp/in >$tmp/out
  34820.   rm -f $tmp/in
  34821.   mv $tmp/out $tmp/in
  34822. ' >>$CONFIG_STATUS
  34823.   sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
  34824.   rm -f conftest.defines
  34825.   mv conftest.tail conftest.defines
  34826. done
  34827. rm -f conftest.defines
  34828. echo '  fi # grep' >>$CONFIG_STATUS
  34829. echo >>$CONFIG_STATUS
  34830.  
  34831. # Break up conftest.undefs because some shells have a limit on the size
  34832. # of here documents, and old seds have small limits too (100 cmds).
  34833. echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
  34834. rm -f conftest.tail
  34835. while grep . conftest.undefs >/dev/null
  34836. do
  34837.   # Write a limited-size here document to $tmp/undefs.sed.
  34838.   echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
  34839.   # Speed up: don't consider the non `#undef'
  34840.   echo '/^[     ]*#[     ]*undef/!b' >>$CONFIG_STATUS
  34841.   # Work around the forget-to-reset-the-flag bug.
  34842.   echo 't clr' >>$CONFIG_STATUS
  34843.   echo ': clr' >>$CONFIG_STATUS
  34844.   sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
  34845.   echo 'CEOF
  34846.   sed -f $tmp/undefs.sed $tmp/in >$tmp/out
  34847.   rm -f $tmp/in
  34848.   mv $tmp/out $tmp/in
  34849. ' >>$CONFIG_STATUS
  34850.   sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
  34851.   rm -f conftest.undefs
  34852.   mv conftest.tail conftest.undefs
  34853. done
  34854. rm -f conftest.undefs
  34855.  
  34856. cat >>$CONFIG_STATUS <<\_ACEOF
  34857.   # Let's still pretend it is `configure' which instantiates (i.e., don't
  34858.   # use $as_me), people would be surprised to read:
  34859.   #    /* config.h.  Generated by config.status.  */
  34860.   if test x"$ac_file" = x-; then
  34861.     echo "/* Generated by configure.  */" >$tmp/config.h
  34862.   else
  34863.     echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
  34864.   fi
  34865.   cat $tmp/in >>$tmp/config.h
  34866.   rm -f $tmp/in
  34867.   if test x"$ac_file" != x-; then
  34868.     if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
  34869.       { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
  34870. echo "$as_me: $ac_file is unchanged" >&6;}
  34871.     else
  34872.       ac_dir=`(dirname "$ac_file") 2>/dev/null ||
  34873. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34874.          X"$ac_file" : 'X\(//\)[^/]' \| \
  34875.          X"$ac_file" : 'X\(//\)$' \| \
  34876.          X"$ac_file" : 'X\(/\)' \| \
  34877.          .     : '\(.\)' 2>/dev/null ||
  34878. echo X"$ac_file" |
  34879.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34880.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34881.         /^X\(\/\/\)$/{ s//\1/; q; }
  34882.         /^X\(\/\).*/{ s//\1/; q; }
  34883.         s/.*/./; q'`
  34884.       { if $as_mkdir_p; then
  34885.     mkdir -p "$ac_dir"
  34886.   else
  34887.     as_dir="$ac_dir"
  34888.     as_dirs=
  34889.     while test ! -d "$as_dir"; do
  34890.       as_dirs="$as_dir $as_dirs"
  34891.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  34892. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34893.          X"$as_dir" : 'X\(//\)[^/]' \| \
  34894.          X"$as_dir" : 'X\(//\)$' \| \
  34895.          X"$as_dir" : 'X\(/\)' \| \
  34896.          .     : '\(.\)' 2>/dev/null ||
  34897. echo X"$as_dir" |
  34898.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34899.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34900.         /^X\(\/\/\)$/{ s//\1/; q; }
  34901.         /^X\(\/\).*/{ s//\1/; q; }
  34902.         s/.*/./; q'`
  34903.     done
  34904.     test ! -n "$as_dirs" || mkdir $as_dirs
  34905.   fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
  34906. echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
  34907.    { (exit 1); exit 1; }; }; }
  34908.  
  34909.       rm -f $ac_file
  34910.       mv $tmp/config.h $ac_file
  34911.     fi
  34912.   else
  34913.     cat $tmp/config.h
  34914.     rm -f $tmp/config.h
  34915.   fi
  34916. _am_stamp_count=`expr ${_am_stamp_count-0} + 1`
  34917. echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
  34918. $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34919.          X$ac_file : 'X\(//\)[^/]' \| \
  34920.          X$ac_file : 'X\(//\)$' \| \
  34921.          X$ac_file : 'X\(/\)' \| \
  34922.          .     : '\(.\)' 2>/dev/null ||
  34923. echo X$ac_file |
  34924.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34925.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34926.         /^X\(\/\/\)$/{ s//\1/; q; }
  34927.         /^X\(\/\).*/{ s//\1/; q; }
  34928.         s/.*/./; q'`/stamp-h$_am_stamp_count
  34929. done
  34930. _ACEOF
  34931. cat >>$CONFIG_STATUS <<\_ACEOF
  34932.  
  34933. #
  34934. # CONFIG_COMMANDS section.
  34935. #
  34936. for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
  34937.   ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
  34938.   ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
  34939.   ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
  34940. $as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34941.          X"$ac_dest" : 'X\(//\)[^/]' \| \
  34942.          X"$ac_dest" : 'X\(//\)$' \| \
  34943.          X"$ac_dest" : 'X\(/\)' \| \
  34944.          .     : '\(.\)' 2>/dev/null ||
  34945. echo X"$ac_dest" |
  34946.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  34947.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  34948.         /^X\(\/\/\)$/{ s//\1/; q; }
  34949.         /^X\(\/\).*/{ s//\1/; q; }
  34950.         s/.*/./; q'`
  34951.   ac_builddir=.
  34952.  
  34953. if test "$ac_dir" != .; then
  34954.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
  34955.   # A "../" for each directory in $ac_dir_suffix.
  34956.   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
  34957. else
  34958.   ac_dir_suffix= ac_top_builddir=
  34959. fi
  34960.  
  34961. case $srcdir in
  34962.   .)  # No --srcdir option.  We are building in place.
  34963.     ac_srcdir=.
  34964.     if test -z "$ac_top_builddir"; then
  34965.        ac_top_srcdir=.
  34966.     else
  34967.        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
  34968.     fi ;;
  34969.   [\\/]* | ?:[\\/]* )  # Absolute path.
  34970.     ac_srcdir=$srcdir$ac_dir_suffix;
  34971.     ac_top_srcdir=$srcdir ;;
  34972.   *) # Relative path.
  34973.     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
  34974.     ac_top_srcdir=$ac_top_builddir$srcdir ;;
  34975. esac
  34976. # Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
  34977. # absolute.
  34978. ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
  34979. ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
  34980. ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
  34981. ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
  34982.  
  34983.  
  34984.   { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
  34985. echo "$as_me: executing $ac_dest commands" >&6;}
  34986.   case $ac_dest in
  34987.     depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
  34988.   # Strip MF so we end up with the name of the file.
  34989.   mf=`echo "$mf" | sed -e 's/:.*$//'`
  34990.   # Check whether this is an Automake generated Makefile or not.
  34991.   # We used to match only the files named `Makefile.in', but
  34992.   # some people rename them; so instead we look at the file content.
  34993.   # Grep'ing the first line is not enough: some people post-process
  34994.   # each Makefile.in and add a new line on top of each file to say so.
  34995.   # So let's grep whole file.
  34996.   if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
  34997.     dirpart=`(dirname "$mf") 2>/dev/null ||
  34998. $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  34999.          X"$mf" : 'X\(//\)[^/]' \| \
  35000.          X"$mf" : 'X\(//\)$' \| \
  35001.          X"$mf" : 'X\(/\)' \| \
  35002.          .     : '\(.\)' 2>/dev/null ||
  35003. echo X"$mf" |
  35004.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  35005.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  35006.         /^X\(\/\/\)$/{ s//\1/; q; }
  35007.         /^X\(\/\).*/{ s//\1/; q; }
  35008.         s/.*/./; q'`
  35009.   else
  35010.     continue
  35011.   fi
  35012.   grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
  35013.   # Extract the definition of DEP_FILES from the Makefile without
  35014.   # running `make'.
  35015.   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
  35016.   test -z "$DEPDIR" && continue
  35017.   # When using ansi2knr, U may be empty or an underscore; expand it
  35018.   U=`sed -n -e '/^U = / s///p' < "$mf"`
  35019.   test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
  35020.   # We invoke sed twice because it is the simplest approach to
  35021.   # changing $(DEPDIR) to its actual value in the expansion.
  35022.   for file in `sed -n -e '
  35023.     /^DEP_FILES = .*\\\\$/ {
  35024.       s/^DEP_FILES = //
  35025.       :loop
  35026.     s/\\\\$//
  35027.     p
  35028.     n
  35029.     /\\\\$/ b loop
  35030.       p
  35031.     }
  35032.     /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
  35033.        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
  35034.     # Make sure the directory exists.
  35035.     test -f "$dirpart/$file" && continue
  35036.     fdir=`(dirname "$file") 2>/dev/null ||
  35037. $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  35038.          X"$file" : 'X\(//\)[^/]' \| \
  35039.          X"$file" : 'X\(//\)$' \| \
  35040.          X"$file" : 'X\(/\)' \| \
  35041.          .     : '\(.\)' 2>/dev/null ||
  35042. echo X"$file" |
  35043.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  35044.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  35045.         /^X\(\/\/\)$/{ s//\1/; q; }
  35046.         /^X\(\/\).*/{ s//\1/; q; }
  35047.         s/.*/./; q'`
  35048.     { if $as_mkdir_p; then
  35049.     mkdir -p $dirpart/$fdir
  35050.   else
  35051.     as_dir=$dirpart/$fdir
  35052.     as_dirs=
  35053.     while test ! -d "$as_dir"; do
  35054.       as_dirs="$as_dir $as_dirs"
  35055.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  35056. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  35057.          X"$as_dir" : 'X\(//\)[^/]' \| \
  35058.          X"$as_dir" : 'X\(//\)$' \| \
  35059.          X"$as_dir" : 'X\(/\)' \| \
  35060.          .     : '\(.\)' 2>/dev/null ||
  35061. echo X"$as_dir" |
  35062.     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  35063.         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  35064.         /^X\(\/\/\)$/{ s//\1/; q; }
  35065.         /^X\(\/\).*/{ s//\1/; q; }
  35066.         s/.*/./; q'`
  35067.     done
  35068.     test ! -n "$as_dirs" || mkdir $as_dirs
  35069.   fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
  35070. echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
  35071.    { (exit 1); exit 1; }; }; }
  35072.  
  35073.     # echo "creating $dirpart/$file"
  35074.     echo '# dummy' > "$dirpart/$file"
  35075.   done
  35076. done
  35077.  ;;
  35078.     default-1 )
  35079.     for ac_file in $CONFIG_FILES; do
  35080.       # Support "outfile[:infile[:infile...]]"
  35081.       case "$ac_file" in
  35082.         *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  35083.       esac
  35084.       # PO directories have a Makefile.in generated from Makefile.in.in.
  35085.       case "$ac_file" in */Makefile.in)
  35086.         # Adjust a relative srcdir.
  35087.         ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
  35088.         ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
  35089.         ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
  35090.         # In autoconf-2.13 it is called $ac_given_srcdir.
  35091.         # In autoconf-2.50 it is called $srcdir.
  35092.         test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
  35093.         case "$ac_given_srcdir" in
  35094.           .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
  35095.           /*) top_srcdir="$ac_given_srcdir" ;;
  35096.           *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
  35097.         esac
  35098.         if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
  35099.           rm -f "$ac_dir/POTFILES"
  35100.           test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
  35101.           cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[     ]*\$/d" -e "s,.*,     $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
  35102.           # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
  35103.           # on $ac_dir but don't depend on user-specified configuration
  35104.           # parameters.
  35105.           if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
  35106.             # The LINGUAS file contains the set of available languages.
  35107.             if test -n "$ALL_LINGUAS"; then
  35108.               test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
  35109.             fi
  35110.             ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
  35111.             # Hide the ALL_LINGUAS assigment from automake.
  35112.             eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
  35113.           fi
  35114.           case "$ac_given_srcdir" in
  35115.             .) srcdirpre= ;;
  35116.             *) srcdirpre='$(srcdir)/' ;;
  35117.           esac
  35118.           POFILES=
  35119.           GMOFILES=
  35120.           UPDATEPOFILES=
  35121.           DUMMYPOFILES=
  35122.           for lang in $ALL_LINGUAS; do
  35123.             POFILES="$POFILES $srcdirpre$lang.po"
  35124.             GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
  35125.             UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
  35126.             DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
  35127.           done
  35128.           # CATALOGS depends on both $ac_dir and the user's LINGUAS
  35129.           # environment variable.
  35130.           INST_LINGUAS=
  35131.           if test -n "$ALL_LINGUAS"; then
  35132.             for presentlang in $ALL_LINGUAS; do
  35133.               useit=no
  35134.               if test "%UNSET%" != "$LINGUAS"; then
  35135.                 desiredlanguages="$LINGUAS"
  35136.               else
  35137.                 desiredlanguages="$ALL_LINGUAS"
  35138.               fi
  35139.               for desiredlang in $desiredlanguages; do
  35140.                 # Use the presentlang catalog if desiredlang is
  35141.                 #   a. equal to presentlang, or
  35142.                 #   b. a variant of presentlang (because in this case,
  35143.                 #      presentlang can be used as a fallback for messages
  35144.                 #      which are not translated in the desiredlang catalog).
  35145.                 case "$desiredlang" in
  35146.                   "$presentlang"*) useit=yes;;
  35147.                 esac
  35148.               done
  35149.               if test $useit = yes; then
  35150.                 INST_LINGUAS="$INST_LINGUAS $presentlang"
  35151.               fi
  35152.             done
  35153.           fi
  35154.           CATALOGS=
  35155.           if test -n "$INST_LINGUAS"; then
  35156.             for lang in $INST_LINGUAS; do
  35157.               CATALOGS="$CATALOGS $lang.gmo"
  35158.             done
  35159.           fi
  35160.           test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
  35161.           sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
  35162.           for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
  35163.             if test -f "$f"; then
  35164.               case "$f" in
  35165.                 *.orig | *.bak | *~) ;;
  35166.                 *) cat "$f" >> "$ac_dir/Makefile" ;;
  35167.               esac
  35168.             fi
  35169.           done
  35170.         fi
  35171.         ;;
  35172.       esac
  35173.     done ;;
  35174.     default )
  35175.   chmod a+x vlc-config
  35176.  ;;
  35177.   esac
  35178. done
  35179. _ACEOF
  35180.  
  35181. cat >>$CONFIG_STATUS <<\_ACEOF
  35182.  
  35183. { (exit 0); exit 0; }
  35184. _ACEOF
  35185. chmod +x $CONFIG_STATUS
  35186. ac_clean_files=$ac_clean_files_save
  35187.  
  35188.  
  35189. # configure is writing to config.log, and then calls config.status.
  35190. # config.status does its own redirection, appending to config.log.
  35191. # Unfortunately, on DOS this fails, as config.log is still kept open
  35192. # by configure, so config.status won't be able to write to it; its
  35193. # output is simply discarded.  So we exec the FD to /dev/null,
  35194. # effectively closing config.log, so it can be properly (re)opened and
  35195. # appended to by config.status.  When coming back to configure, we
  35196. # need to make the FD available again.
  35197. if test "$no_create" != yes; then
  35198.   ac_cs_success=:
  35199.   ac_config_status_args=
  35200.   test "$silent" = yes &&
  35201.     ac_config_status_args="$ac_config_status_args --quiet"
  35202.   exec 5>/dev/null
  35203.   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  35204.   exec 5>>config.log
  35205.   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  35206.   # would make configure fail if this is the last instruction.
  35207.   $ac_cs_success || { (exit 1); exit 1; }
  35208. fi
  35209.  
  35210.  
  35211. printf "
  35212. vlc configuration
  35213. --------------------
  35214. vlc version           : ${VERSION}
  35215. system                : ${SYS}
  35216. architecture          : ${ARCH}
  35217. build flavour         : "
  35218. test "x${DEBUG_TRUE}" = "x" && printf "debug "
  35219. test "x${CPROF_TRUE}" = "x" && printf "cprof "
  35220. test "x${GPROF_TRUE}" = "x" && printf "gprof "
  35221. test "x${OPTIM_TRUE}" = "x" && printf "optim "
  35222. test "x${RELEASE_TRUE}" = "x" && printf "release " || printf "devel "
  35223. echo "
  35224. vlc aliases           :${ALIASES}
  35225.  
  35226. To build vlc and its plugins, type \`make'.
  35227. "
  35228.  
  35229.